Update plugins, dependencies, and GitHub Actions #39
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
name: CI | |
on: | |
push: | |
paths-ignore: | |
- '**/*.md' | |
pull_request: | |
paths-ignore: | |
- '**/*.md' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
# First build and test with JDK 21 | |
# Then run tests with JDK 8, 11, and 17 | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- uses: gradle/actions/setup-gradle@v4 | |
- name: Build with Gradle | |
id: gradle-build | |
run: ./gradlew :build-logic:build build --stacktrace | |
- name: Store reports | |
if: always() && (steps.gradle-build.outcome == 'success' || steps.gradle-build.outcome == 'failure') | |
uses: actions/upload-artifact@v4 | |
with: | |
name: reports | |
path: | | |
**/build/reports/ | |
**/build/test-results/ | |
test-jdk: | |
needs: linux | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 8, 11, 17 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: | | |
${{ matrix.java }} | |
21 | |
- name: Setup environment | |
run: | | |
echo "org.gradle.java.installations.auto-download=false" | tee -a gradle.properties | |
echo "org.gradle.java.installations.fromEnv=JAVA_HOME_${{ matrix.java }}_X64" | tee -a gradle.properties | |
- uses: gradle/actions/setup-gradle@v3 | |
- name: Build with Gradle | |
id: gradle-build | |
run: ./gradlew test "-Ptest.java-toolchain=${{ matrix.java }}" | |
- name: Store reports | |
if: always() && (steps.gradle-build.outcome == 'success' || steps.gradle-build.outcome == 'failure') | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jdk-${{ matrix.java }}-tests | |
path: | | |
**/build/reports/tests/test/ | |
**/build/test-results/ |