File tree 2 files changed +45
-3
lines changed
2 files changed +45
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : macOS (arm64)
2
+
3
+ on :
4
+ pull_request :
5
+ push :
6
+ release :
7
+ types : [published]
8
+
9
+ jobs :
10
+ build :
11
+
12
+ strategy :
13
+ matrix :
14
+ os : [macos-14]
15
+ arch : [arm64]
16
+
17
+ runs-on : ${{ matrix.os }}
18
+
19
+ concurrency :
20
+ group : ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-macOS-${{ matrix.arch }}
21
+ cancel-in-progress : true
22
+ steps :
23
+ - uses : actions/checkout@v2
24
+ with :
25
+ fetch-depth : 0
26
+ submodules : true
27
+ - name : Prepare local xmake
28
+ run : cp -rf . ../xmake-source
29
+ - uses : xmake-io/github-action-setup-xmake@v1
30
+ with :
31
+ xmake-version : local#../xmake-source
32
+
33
+ - name : Installation
34
+ run : |
35
+ brew install dmd
36
+ brew install dub
37
+
38
+ - name : Tests
39
+ run : |
40
+ xmake lua -v -D tests/run.lua
41
+ xrepo --version
42
+
Original file line number Diff line number Diff line change 1
- name : macOS
1
+ name : macOS (x86_64)
2
2
3
3
on :
4
4
pull_request :
11
11
12
12
strategy :
13
13
matrix :
14
- os : [macOS-latest ]
15
- arch : [x86_64, arm64 ]
14
+ os : [macos-12 ]
15
+ arch : [x86_64]
16
16
17
17
runs-on : ${{ matrix.os }}
18
18
You can’t perform that action at this time.
0 commit comments