File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,17 @@ jobs:
13
13
matrix :
14
14
node : [20]
15
15
os :
16
+ # macos-14 is arm64 (m1)
16
17
- name : darwin
17
- architecture : arm64
18
18
host : macos-14
19
19
20
+ # macos-13 is x86
21
+ - name : mac-x64
22
+ host : macos-13
23
+
24
+ # ubuntu-20.04 is x86. Still no arm linux runners yet
25
+ # https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories
20
26
- name : linux
21
- architecture : x86-64
22
27
host : ubuntu-20.04
23
28
env :
24
29
CC : clang
@@ -108,6 +113,7 @@ jobs:
108
113
mv ${{ steps.download.outputs.download-path}}/prebuild-linux-arm64/linux-arm64/* ./prebuilds/linux-arm64/
109
114
mv ${{ steps.download.outputs.download-path}}/prebuild-linux-arm64/linux-x64/* ./prebuilds/linux-x64/
110
115
mv ${{ steps.download.outputs.download-path}}/prebuild-macOS-ARM64/darwin-arm64/* ./prebuilds/darwin-arm64/
116
+ mv ${{ steps.download.outputs.download-path}}/prebuild-macOS-X64/darwin-x64/* ./prebuilds/darwin-x64/
111
117
find ./prebuilds
112
118
- name : npm install
113
119
run : npm ci
You can’t perform that action at this time.
0 commit comments