mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-03-10 09:20:04 +01:00
graalvm.yml: use official setup-graalvm action
Switch from the DeLaGuardo/setup-graalvm action to the "official" graalvm/setup-graalvm action.
This commit is contained in:
parent
545c1c8be7
commit
d3d240b855
1 changed files with 6 additions and 6 deletions
12
.github/workflows/graalvm.yml
vendored
12
.github/workflows/graalvm.yml
vendored
|
@ -8,7 +8,7 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macOS-latest]
|
||||
java: [ 'java17' ]
|
||||
java: [ '17' ]
|
||||
graalvm: [ '22.1.0' ]
|
||||
gradle: ['7.6']
|
||||
fail-fast: false
|
||||
|
@ -17,12 +17,12 @@ jobs:
|
|||
- name: Git checkout
|
||||
uses: actions/checkout@v1
|
||||
- name: Set up GraalVM
|
||||
uses: DeLaGuardo/setup-graalvm@4.0
|
||||
uses: graalvm/setup-graalvm@v1
|
||||
with:
|
||||
graalvm: ${{ matrix.graalvm }}
|
||||
java: ${{ matrix.java }}
|
||||
- name: Install native-image plugin
|
||||
run: gu install native-image
|
||||
version: ${{ matrix.graalvm }}
|
||||
java-version: ${{ matrix.java }}
|
||||
components: 'native-image'
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Build with Gradle
|
||||
uses: gradle/gradle-build-action@v1
|
||||
with:
|
||||
|
|
Loading…
Add table
Reference in a new issue