File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Build Native Image
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - debug-ci
7
+
8
+ jobs :
9
+ build-native-image :
10
+ name : HelloWorld on ${{ matrix.os }}
11
+ runs-on : ${{ matrix.os }}
12
+ strategy :
13
+ matrix :
14
+ os : [macos-latest]
15
+
16
+ steps :
17
+ - name : Checkout Repository
18
+ uses : actions/checkout@v4
19
+
20
+ - name : Set up GraalVM
21
+ uses : graalvm/setup-graalvm@v1
22
+ with :
23
+ java-version : ' 21'
24
+ distribution : ' graalvm'
25
+ components : " native-image"
26
+
27
+ - name : Grant Execute Permissions for Gradlew
28
+ run : chmod +x gradlew
29
+
30
+ - name : Build Native Image
31
+ run : ./gradlew nativeCompile
32
+
33
+ - name : Upload Artifact
34
+ uses : actions/upload-artifact@v3
35
+ with :
36
+ name : qmk-display-${{ matrix.os }}
37
+ path : ./build/native/nativeCompile/qmk-display
You can’t perform that action at this time.
0 commit comments