Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch over to version 4 (Java 17, Gradle) #7399

Merged
merged 24 commits into from
Feb 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
6103844
#7090 disable existing builds from version 0-3
planetf1 Nov 4, 2022
b147d4a
#7090 Add new v4 actions for pr - gradle/codeql
planetf1 Nov 4, 2022
e58a2ff
#7090 add unique names for v4 build
planetf1 Nov 4, 2022
ff95904
#7090 Update to Java 17
planetf1 Nov 4, 2022
87583bb
Add #7090 Update to Java 17 language/class level
planetf1 Nov 4, 2022
1d6fd05
#7090 specify Java 17 for sonatype lift
planetf1 Nov 4, 2022
f16b64f
#7090 fix typo in release.yml
planetf1 Nov 4, 2022
6e849f6
#7090 use official gradle build action
planetf1 Nov 4, 2022
9ba4123
#7090 fix more minor naming updates
planetf1 Nov 21, 2022
c13e805
Add v4 build function for docker, publishing
planetf1 Nov 21, 2022
55ff7ab
Correct syntax error in lift configuration
planetf1 Nov 21, 2022
bb03894
Correct v4 merge build
planetf1 Nov 21, 2022
2a783be
Update build target for artifact generation to build publish
planetf1 Nov 21, 2022
e091296
Change name of gradle publication + add more exclusions for assembly
planetf1 Nov 21, 2022
a8d8e62
PR build should publish to maven local to get best build test for PR
planetf1 Nov 21, 2022
1ee406a
Correct path used to source distribution package for docker image con…
planetf1 Nov 21, 2022
39d0408
Correct docker latest tag to only operate when branch is main
planetf1 Nov 21, 2022
ff9b7cc
Add Update hardcoded version strings required to allow containers/api…
planetf1 Nov 21, 2022
75f65f8
Update directory for build output in container image
planetf1 Nov 22, 2022
81c42e7
Update docker image to UBI9 openjdk17-runtime
planetf1 Nov 22, 2022
da7c5ca
Do #7090 specify Java 17 for sonatype lift
planetf1 Nov 4, 2022
1c8bfe9
Correct syntax error in lift configuration
planetf1 Nov 21, 2022
92dc8b2
#7330 Additional updates to workflows for v4 switchover
planetf1 Feb 5, 2023
ef12e35
#7330 updates to gradle properties
planetf1 Feb 5, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 0 additions & 61 deletions .azure-pipelines/nexus-iq-clm.yml

This file was deleted.

64 changes: 0 additions & 64 deletions .azure-pipelines/sonar.yml

This file was deleted.

50 changes: 50 additions & 0 deletions .github/workflows/codeql-v4.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright Contributors to the ODPi Egeria project.
#
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
---
name: "CodeQL Analysis v4"

on:
push:
branches: [main, egeria-release-4*]
pull_request:
# The branches below must be a subset of the branches above
branches: [main, egeria-release-4*]

jobs:
analyze:
if: ${{ github.repository == 'odpi/egeria'}}
name: "CodeQL Build v4"
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: gradle/wrapper-validation-action@v1
- name: Setup Java JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: java
queries: security-and-quality
- name: Build
uses: gradle/gradle-build-action@v2
with:
cache-read-only: true
arguments: -x javadoc -x test build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
52 changes: 0 additions & 52 deletions .github/workflows/merge-gradle.yml

This file was deleted.

104 changes: 0 additions & 104 deletions .github/workflows/merge-maven.yml

This file was deleted.

Loading