Github gradle.yml: Generate/upload artifacts and SHA256SUM #822
Workflow file for this run
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: Gradle Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
java: ['11', '17', '21-ea'] | |
distribution: ['temurin'] | |
fail-fast: false | |
name: ${{ matrix.os }} JDK ${{ matrix.java }} | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: ${{ matrix.distribution }} | |
java-version: ${{ matrix.java }} | |
- name: Cache Gradle packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
restore-keys: ${{ runner.os }}-gradle | |
- name: Build with Gradle | |
run: ./gradlew buildCI installDist --scan --info --stacktrace | |
- name: Generate SHA256SUMS (Linux) | |
run: sha256sum build/artifacts/*/* > SHA256SUMS | |
working-directory: ./build | |
if: runner.os == 'Linux' | |
- name: Generate SHA256SUMS (macOS) | |
run: shasum -a 256 build/artifacts/*/* > SHA256SUMS | |
working-directory: ./build | |
if: runner.os == 'macOS' | |
- name: Upload SHA256SUMS | |
uses: actions/upload-artifact@v3 | |
with: | |
name: SHA256SUMS | |
path: build | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: artifacts-${{ matrix.os }}-${{ matrix.java }} | |
path: build/artifacts |