GitHub gradle.yml workflow: use JDK 23 #334
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] | |
distribution: ['temurin'] | |
fail-fast: false | |
name: ${{ matrix.os }} JDK 23 | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ matrix.distribution }} | |
# When installing multiple JDKs, the last JDK installed is the default and will be used to run Gradle itself | |
java-version: | | |
23 | |
- name: Cache Gradle packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
restore-keys: ${{ runner.os }}-gradle | |
- name: Install Nix | |
uses: cachix/install-nix-action@v25 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install secp256k1 with Nix | |
run: nix profile install nixpkgs#secp256k1 | |
- name: Build with Gradle | |
run: ./gradlew -PjavaToolchainVersion=23 build | |
- name: Run Java & Kotlin Examples | |
run: ./gradlew -PjavaToolchainVersion=23 run runEcdsa |