File tree 2 files changed +31
-1
lines changed
2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 8
8
workflow_dispatch :
9
9
10
10
jobs :
11
- linuxbuild :
11
+ macosbuild :
12
12
runs-on : macos-11
13
13
steps :
14
14
- uses : xmake-io/github-action-setup-xmake@v1
Original file line number Diff line number Diff line change
1
+ name : Build on macOS arm64
2
+
3
+ on :
4
+ push :
5
+ branches : [ main ]
6
+ pull_request :
7
+ branches : [ main ]
8
+ workflow_dispatch :
9
+
10
+ jobs :
11
+ macosbuild :
12
+ strategy :
13
+ matrix :
14
+ os : [macos-12]
15
+ arch : [arm64]
16
+ runs-on : ${{ matrix.os }}
17
+ steps :
18
+ - uses : xmake-io/github-action-setup-xmake@v1
19
+ with :
20
+ xmake-version : v2.8.5
21
+ - uses : actions/checkout@v3
22
+ with :
23
+ fetch-depth : 1
24
+ - name : config
25
+ run : xmake config --yes -vD
26
+ - name : build
27
+ run : xmake build --yes -vD s7
28
+ - name : test
29
+ run : xmake run --yes -vD plus.scm
30
+
You can’t perform that action at this time.
0 commit comments