mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-21 14:04:16 +01:00
graalvm.yml: rename matrix variable java
from java-version
This commit is contained in:
parent
9e1dd68a70
commit
6aaf7af52e
1 changed files with 4 additions and 4 deletions
8
.github/workflows/graalvm.yml
vendored
8
.github/workflows/graalvm.yml
vendored
|
@ -9,18 +9,18 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-24.04, macOS-13]
|
||||
java-version: [ '17', '21' ]
|
||||
java: [ '17', '21' ]
|
||||
distribution: [ 'graalvm-community' ]
|
||||
gradle: ['8.12.1']
|
||||
fail-fast: false
|
||||
name: ${{ matrix.os }} JDK ${{ matrix.java-version }}.${{ matrix.distribution }}
|
||||
name: ${{ matrix.os }} JDK ${{ matrix.java }}.${{ matrix.distribution }}
|
||||
steps:
|
||||
- name: Git checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up GraalVM
|
||||
uses: graalvm/setup-graalvm@v1
|
||||
with:
|
||||
java-version: ${{ matrix.java-version }}
|
||||
java-version: ${{ matrix.java }}
|
||||
distribution: ${{ matrix.distribution }}
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Set up Gradle
|
||||
|
@ -32,5 +32,5 @@ jobs:
|
|||
- name: Upload wallet-tool as artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: wallet-tool-${{ matrix.os }}-${{ matrix.java-version }}
|
||||
name: wallet-tool-${{ matrix.os }}-${{ matrix.java }}
|
||||
path: wallettool/build/native/nativeCompile/wallet-tool
|
||||
|
|
Loading…
Add table
Reference in a new issue