Skip to content

Commit

Permalink
Remove combine-only build
Browse files Browse the repository at this point in the history
  • Loading branch information
SMadani committed Sep 6, 2024
1 parent 47cf892 commit d1a0756
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 22 deletions.
23 changes: 2 additions & 21 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,39 +19,20 @@ permissions:
statuses: write

jobs:
compile:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
java: [8, 11]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
cache: maven
- name: Compile with Maven
run: mvn -e --batch-mode compile -T 1C

verify:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
java: [17, 22]
java: [8, 11, 17, 22]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'corretto'
distribution: 'zulu'
java-version: ${{ matrix.java }}
cache: maven
- name: Test with Maven
Expand Down
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,3 @@ Initial version
### Added
- Messages API
- Verify v2 API

0 comments on commit d1a0756

Please sign in to comment.