-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
And remove signign workaround: lifecycle 2.1.2 is fixed to work with Java8 bytecode, and this makes signing working again. Also, move to latest CI GH action that now allows "tuning" JDK versions and uses proper concurrency instead of the deprecated action to cancel jobs.
- Loading branch information
Showing
2 changed files
with
4 additions
and
79 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 |
---|---|---|
|
@@ -7,27 +7,7 @@ on: | |
pull_request: | ||
|
||
jobs: | ||
setup: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Stop old builds | ||
if: github.ref != 'refs/heads/master' | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
build: | ||
needs: setup | ||
strategy: | ||
matrix: | ||
java: [ 8, 11, 17 ] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: "Set up JDK ${{ matrix.java }}" | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: ${{ matrix.java }} | ||
distribution: 'temurin' | ||
- name: Build & Test | ||
run: ./mvnw -B verify | ||
name: Verify | ||
uses: takari/takari-gh-actions/.github/workflows/ci.yml@v2 | ||
|
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