We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62826d3 commit cf7c4caCopy full SHA for cf7c4ca
.github/workflows/native-image-compile.yml
@@ -8,6 +8,14 @@ jobs:
8
steps:
9
- uses: actions/checkout@v2
10
11
+ - name: Cache SDKMAN installation
12
+ uses: actions/cache@v2
13
+ with:
14
+ path: ~/.sdkman
15
+ key: ${{ runner.os }}-sdkman-${{ hashFiles('**/pom.xml') }}
16
+ restore-keys: |
17
+ ${{ runner.os }}-sdkman-
18
+
19
- name: Install GraalVM with SDKMAN
20
run: |
21
curl -s "https://get.sdkman.io" | bash
@@ -17,6 +25,7 @@ jobs:
25
26
- name: Install GraalVM Native Image
27
28
+ source "$HOME/.sdkman/bin/sdkman-init.sh"
29
gu install native-image
30
native-image --version
22
31
0 commit comments