7
7
- main
8
8
paths :
9
9
- npm/package.json # Please only commit this file, so we don't need to wait for test CI to pass.
10
+ pull_request : null
10
11
11
12
env :
12
13
DEBUG : " napi:*"
41
42
42
43
build :
43
44
needs : check
44
- if : needs.check.outputs.version_changed == 'true'
45
+ # if: needs.check.outputs.version_changed == 'true'
45
46
env :
46
47
version : ${{ needs.check.outputs.version }}
47
48
outputs :
@@ -52,41 +53,70 @@ jobs:
52
53
include :
53
54
- os : windows-latest
54
55
target : x86_64-pc-windows-msvc
56
+ build : pnpm build
55
57
- os : windows-latest
56
58
target : aarch64-pc-windows-msvc
59
+ build : pnpm build --target aarch64-pc-windows-msvc
57
60
- os : windows-latest
58
61
target : i686-pc-windows-msvc
62
+ architecture : x86
63
+ build : |
64
+ pnpm build --target i686-pc-windows-msvc
65
+ pnpm test
59
66
- os : ubuntu-latest
60
67
target : x86_64-unknown-linux-gnu
68
+ build : pnpm build --target x86_64-unknown-linux-gnu --use-napi-cross
61
69
- os : ubuntu-latest
62
70
target : x86_64-unknown-linux-musl
71
+ build : pnpm build --target x86_64-unknown-linux-musl -x
63
72
- os : ubuntu-latest
64
73
target : aarch64-unknown-linux-gnu
74
+ build : pnpm build --target aarch64-unknown-linux-gnu --use-napi-cross
65
75
- os : ubuntu-latest
66
76
target : aarch64-unknown-linux-musl
77
+ build : pnpm build --target aarch64-unknown-linux-musl -x
67
78
- os : ubuntu-latest
68
79
target : armv7-unknown-linux-gnueabihf
80
+ build : pnpm build --target armv7-unknown-linux-gnueabihf --use-napi-cross
69
81
- os : ubuntu-latest
70
82
target : armv7-unknown-linux-musleabihf
83
+ build : pnpm build --target armv7-unknown-linux-musleabihf -x
71
84
- os : ubuntu-latest
72
85
target : riscv64gc-unknown-linux-gnu
86
+ setup : |
87
+ sudo apt-get update
88
+ sudo apt-get install gcc-riscv64-linux-gnu -y
89
+ build : pnpm build --target riscv64gc-unknown-linux-gnu
73
90
- os : ubuntu-latest
74
91
target : powerpc64le-unknown-linux-gnu
92
+ setup : |
93
+ sudo apt-get update
94
+ sudo apt-get install gcc-powerpc64le-linux-gnu -y
95
+ build : pnpm build --target powerpc64le-unknown-linux-gnu
75
96
- os : ubuntu-latest
76
97
target : s390x-unknown-linux-gnu
98
+ setup : |
99
+ sudo apt-get update
100
+ sudo apt-get install gcc-s390x-linux-gnu -y
101
+ build : pnpm build --target s390x-unknown-linux-gnu
77
102
- os : macos-latest
78
103
target : x86_64-apple-darwin
104
+ build : pnpm build --target x86_64-apple-darwin
79
105
- os : macos-latest
80
106
target : aarch64-apple-darwin
107
+ build : pnpm build --target aarch64-apple-darwin
81
108
- os : ubuntu-latest
82
109
target : wasm32-wasip1-threads
110
+ build : pnpm build --target wasm32-wasip1-threads
83
111
84
112
name : Package ${{ matrix.target }}
85
113
runs-on : ${{ matrix.os }}
86
114
steps :
87
115
- uses : taiki-e/checkout-action@v1
88
116
89
117
- uses : ./.github/actions/pnpm
118
+ with :
119
+ architecture : ${{ matrix.architecture }}
90
120
91
121
- run : rustup target add ${{ matrix.target }}
92
122
@@ -95,21 +125,24 @@ jobs:
95
125
with :
96
126
version : 0.13.0
97
127
98
- - name : Build with zig cross
128
+ - name : Install cargo-zigbuild
129
+ uses : taiki-e/install-action@v2
99
130
if : ${{ contains(matrix.target, 'musl') }}
100
- run : pnpm build -x --target ${{ matrix.target }}
101
-
102
- - name : Build with napi cross
103
- if : ${{ contains(matrix.target, 'gnu') }}
104
131
env :
105
- CC : clang # for mimalloc
106
- run : pnpm build --use-napi-cross --target ${{ matrix.target }}
132
+ GITHUB_TOKEN : ${{ github.token }}
133
+ with :
134
+ tool : cargo-zigbuild
135
+
136
+ - name : Setup toolchain
137
+ if : ${{ matrix.setup }}
138
+ run : ${{ matrix.setup }}
139
+ shell : bash
107
140
108
141
- name : Build
109
- if : ${{ !contains(matrix.target, 'gnu') && !contains(matrix.target, 'musl') }}
142
+ run : ${{ matrix.build }}
143
+ shell : bash
110
144
env :
111
- CC : clang # for mimalloc
112
- run : pnpm build --target ${{ matrix.target }}
145
+ CC : clang
113
146
114
147
- name : Upload artifacts
115
148
uses : actions/upload-artifact@v4
@@ -118,10 +151,11 @@ jobs:
118
151
path : |
119
152
napi/*.node
120
153
napi/*.wasm
154
+ if-no-files-found : error
121
155
122
156
build-freebsd :
123
157
needs : check
124
- if : needs.check.outputs.version_changed == 'true'
158
+ # if: needs.check.outputs.version_changed == 'true'
125
159
name : Build FreeBSD
126
160
runs-on : ubuntu-latest
127
161
steps :
@@ -171,8 +205,10 @@ jobs:
171
205
permissions :
172
206
id-token : write # for `npm publish --provenance`
173
207
needs :
208
+ - check
174
209
- build
175
210
- build-freebsd
211
+ if : needs.check.outputs.version_changed == 'true'
176
212
env :
177
213
COREPACK_INTEGRITY_KEYS : 0
178
214
steps :
0 commit comments