-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from SoftlySplinter/main
Use GitHub Actions for CI builds
- Loading branch information
Showing
20 changed files
with
229 additions
and
1,363 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
branches: ["main"] | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
build-maven: | ||
name: Build Maven | ||
|
||
runs-on: ubuntu-latest | ||
continue-on-error: ${{ matrix.experimental }} | ||
strategy: | ||
matrix: | ||
jdk: [8, 11] | ||
experimental: [false] | ||
include: | ||
- jdk: 17 | ||
experimental: true | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK ${{ matrix.jdk }} | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: ${{ matrix.jdk }} | ||
distribution: "semeru" | ||
cache: maven | ||
- name: Build with Maven | ||
run: mvn --batch-mode --update-snapshots --file pom.xml -Djava.version=${{ matrix.jdk }} package | ||
- run: mkdir staging && cp target/*.war staging | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: cics-java-liberty-sprintboot-asynchronous (Maven, Java ${{ matrix.jdk }}) | ||
path: staging | ||
|
||
build-mvnw: | ||
name: Build Maven Wrapper | ||
|
||
runs-on: ubuntu-latest | ||
continue-on-error: ${{ matrix.experimental }} | ||
strategy: | ||
matrix: | ||
jdk: [8, 11] | ||
experimental: [false] | ||
include: | ||
- jdk: 17 | ||
experimental: true | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK ${{ matrix.jdk }} | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: ${{ matrix.jdk }} | ||
distribution: "semeru" | ||
cache: maven | ||
- name: Build with Maven | ||
run: ./mvnw --batch-mode --update-snapshots --file pom.xml -Djava.version=${{ matrix.jdk }} package | ||
|
||
build-gradle: | ||
name: Build Gradle | ||
|
||
runs-on: ubuntu-latest | ||
continue-on-error: ${{ matrix.experimental }} | ||
strategy: | ||
matrix: | ||
jdk: [8, 11] | ||
experimental: [false] | ||
include: | ||
- jdk: 17 | ||
experimental: true | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK ${{ matrix.jdk }} | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: ${{ matrix.jdk }} | ||
distribution: 'semeru' | ||
- name: Build with Gradle | ||
uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0 | ||
with: | ||
arguments: bootWar -Pjava_version=${{ matrix.jdk }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
33 changes: 0 additions & 33 deletions
33
.tekton/helm/templates/built-artifact-server-deployment.yaml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.