File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,11 +19,20 @@ jobs:
1919
2020 steps :
2121 - uses : actions/checkout@v2
22- - uses : ayltai/setup-graalvm@v1
22+ - name : Setup Graalvm
23+ id : setup-graalvm
24+ uses : DeLaGuardo/setup-graalvm@master
2325 with :
24- java-version : 11
25- graalvm-version : 21.3.0
26- native-image : true
26+ # GraalVM version, no pattern syntax available atm
27+ graalvm : ' 21.3.0'
28+ # Java version, optional, defaults to 'java8'. Available options are 'java8' and 'java11'.
29+ java : ' java11'
30+ # Architecture flag, optional, defaults to 'amd64'. Available options are 'amd64' and 'aarch64'. Later is available only for linux runners.
31+ arch : ' amd64'
32+
33+ - name : Install native-image component
34+ run : |
35+ gu install native-image
2736
2837 - name : Build native spp-cli
2938 run : gradle assemble nativeImage -Dbuild.profile=release
You can’t perform that action at this time.
0 commit comments