Skip to content

Commit

Permalink
Consolidate CI/CD (#137)
Browse files Browse the repository at this point in the history
* Consolidate CI/CD
* Minor CI/CD correction
  • Loading branch information
tmiddlet2666 authored Oct 2, 2024
1 parent 07acf6e commit 0ce964f
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 152 deletions.
47 changes: 0 additions & 47 deletions .github/workflows/maven-build-jdk21.yml

This file was deleted.

97 changes: 0 additions & 97 deletions .github/workflows/maven-build-snapshots-14110.yml

This file was deleted.

8 changes: 5 additions & 3 deletions .github/workflows/maven-build-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,17 @@ jobs:
matrix:
coherenceVersion:
- 24.09
javaVersion:
- 21
- 22

steps:
- uses: actions/checkout@v4


- name: Set up JDK 21
- name: Set up JDK ${{ matrix.javaVersion }}
uses: actions/setup-java@v4
with:
java-version: '21'
java-version: '${{ matrix.javaVersion }}'
distribution: 'zulu'

- name: Print Versions
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/maven-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
fail-fast: false
matrix:
version:
- 14.1.1-0-17
- 22.06.8
- 14.1.1-0-18
- 22.06.9

steps:
- name: Checkout
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/polyglot-build-jdk21.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,19 @@ jobs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
javaVersion:
- 21
- 22

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up JDK 21
- name: Set up JDK ${{ matrix.javaVersion }}
uses: actions/setup-java@v4
with:
java-version: '21'
java-version: '${{ matrix.javaVersion }}'
distribution: 'zulu'

- name: Print Versions
Expand All @@ -36,7 +40,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.20'
go-version: '1.23'

- name: Set up Python 3.11
uses: actions/setup-python@v5
Expand Down

0 comments on commit 0ce964f

Please sign in to comment.