This repository was archived by the owner on Jul 24, 2024. It is now read-only.
File tree 2 files changed +13
-3
lines changed
2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
build :
11
- runs-on : macos-latest
11
+ runs-on : ${{ matrix. macos }}
12
12
13
13
strategy :
14
14
fail-fast : false
18
18
- 18
19
19
- 19
20
20
- 20
21
+ macos :
22
+ - macos-12
23
+ - macos-14
21
24
22
25
steps :
23
26
- uses : actions/checkout@v3
36
39
run : npm test
37
40
38
41
- uses : actions/upload-artifact@v3
39
- if : github.repository_owner == 'sass' && github.event_name != 'pull_request'
42
+ if : github.repository_owner == 'sass' && github.event_name != 'pull_request' && matrix.macos == 'macos-12'
40
43
with :
41
- name : ${{ matrix.node }}
44
+ name : ${{ matrix.node }}-x64
45
+ path : vendor/
46
+
47
+ - uses : actions/upload-artifact@v3
48
+ if : github.repository_owner == 'sass' && github.event_name != 'pull_request' && matrix.macos == 'macos-14'
49
+ with :
50
+ name : ${{ matrix.node }}-arm64
42
51
path : vendor/
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ function getHumanArchitecture(arch) {
43
43
case 'ia32' : return '32-bit' ;
44
44
case 'x86' : return '32-bit' ;
45
45
case 'x64' : return '64-bit' ;
46
+ case 'arm64' : return 'ARM' ;
46
47
default : return false ;
47
48
}
48
49
}
You can’t perform that action at this time.
0 commit comments