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
- DEBUG : " napi:*"
13
+ DEBUG : napi:*
14
+ APP_NAME : rspack-resolver
15
+ OXC_LOG : debug
16
+ MACOSX_DEPLOYMENT_TARGET : 10.13
17
+ CC : clang
13
18
14
19
concurrency :
15
20
group : ${{ github.workflow }}-${{ github.ref }}
@@ -23,10 +28,10 @@ jobs:
23
28
version : ${{ env.version }}
24
29
version_changed : ${{ steps.version.outputs.changed }}
25
30
steps :
26
- - uses : taiki-e/checkout-action@v1
31
+ - uses : taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
27
32
28
33
- name : Check version changes
29
- uses : EndBug/version-check@v2
34
+ uses : EndBug/version-check@36ff30f37c7deabe56a30caa043d127be658c425 # v2
30
35
id : version
31
36
with :
32
37
static-checking : localIsNew
41
46
42
47
build :
43
48
needs : check
44
- if : needs.check.outputs.version_changed == 'true'
49
+ # if: needs.check.outputs.version_changed == 'true'
45
50
env :
46
51
version : ${{ needs.check.outputs.version }}
47
52
outputs :
@@ -52,41 +57,56 @@ jobs:
52
57
include :
53
58
- os : windows-latest
54
59
target : x86_64-pc-windows-msvc
60
+ build : pnpm build
55
61
- os : windows-latest
56
62
target : aarch64-pc-windows-msvc
63
+ build : pnpm build
57
64
- os : windows-latest
58
65
target : i686-pc-windows-msvc
66
+ architecture : x86
67
+ build : pnpm build
59
68
- os : ubuntu-latest
60
69
target : x86_64-unknown-linux-gnu
70
+ build : pnpm build --use-napi-cross
61
71
- os : ubuntu-latest
62
72
target : x86_64-unknown-linux-musl
73
+ build : pnpm build -x
63
74
- os : ubuntu-latest
64
75
target : aarch64-unknown-linux-gnu
76
+ build : pnpm build --use-napi-cross
65
77
- os : ubuntu-latest
66
78
target : aarch64-unknown-linux-musl
79
+ build : pnpm build -x
67
80
- os : ubuntu-latest
68
81
target : armv7-unknown-linux-gnueabihf
82
+ build : pnpm build --use-napi-cross
69
83
- os : ubuntu-latest
70
84
target : armv7-unknown-linux-musleabihf
71
- - os : ubuntu-latest
72
- target : riscv64gc-unknown-linux-gnu
85
+ build : pnpm build -x
73
86
- os : ubuntu-latest
74
87
target : powerpc64le-unknown-linux-gnu
88
+ build : pnpm build --use-napi-cross
75
89
- os : ubuntu-latest
76
90
target : s390x-unknown-linux-gnu
91
+ build : export CFLAGS="-fuse-ld=lld" && pnpm build --use-napi-cross
77
92
- os : macos-latest
78
93
target : x86_64-apple-darwin
94
+ build : pnpm build
79
95
- os : macos-latest
80
96
target : aarch64-apple-darwin
97
+ build : pnpm build
81
98
- os : ubuntu-latest
82
99
target : wasm32-wasip1-threads
100
+ build : pnpm build
83
101
84
102
name : Package ${{ matrix.target }}
85
103
runs-on : ${{ matrix.os }}
86
104
steps :
87
- - uses : taiki-e/checkout-action@v1
105
+ - uses : taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
88
106
89
107
- uses : ./.github/actions/pnpm
108
+ with :
109
+ architecture : ${{ matrix.architecture }}
90
110
91
111
- run : rustup target add ${{ matrix.target }}
92
112
@@ -95,46 +115,43 @@ jobs:
95
115
with :
96
116
version : 0.13.0
97
117
98
- - name : Build with zig cross
118
+ - name : Install cargo-zigbuild
119
+ uses : taiki-e/install-action@5651179950649c44da31d346537e20c0534f0f25 # v2
99
120
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
121
env :
105
- CC : clang # for mimalloc
106
- run : pnpm build --use-napi-cross --target ${{ matrix.target }}
122
+ GITHUB_TOKEN : ${{ github.token }}
123
+ with :
124
+ tool : cargo-zigbuild
107
125
108
126
- name : Build
109
- if : ${{ !contains(matrix.target, 'gnu') && !contains(matrix.target, 'musl') }}
110
- env :
111
- CC : clang # for mimalloc
112
- run : pnpm build --target ${{ matrix.target }}
127
+ run : ${{ matrix.build }} --target ${{ matrix.target }}
128
+ shell : bash
113
129
114
130
- name : Upload artifacts
115
- uses : actions/upload-artifact@v4
131
+ uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
116
132
with :
117
133
name : bindings-${{ matrix.target }}
118
134
path : |
119
135
napi/*.node
120
136
napi/*.wasm
137
+ if-no-files-found : error
121
138
122
139
build-freebsd :
123
140
needs : check
124
- if : needs.check.outputs.version_changed == 'true'
141
+ # if: needs.check.outputs.version_changed == 'true'
125
142
name : Build FreeBSD
126
143
runs-on : ubuntu-latest
127
144
steps :
128
- - uses : taiki-e/checkout-action@v1
145
+ - uses : taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
129
146
- name : Build
130
147
id : build
131
- uses :
cross-platform-actions/[email protected]
148
+ uses : cross-platform-actions/action@fe0167d8082ac584754ef3ffb567fded22642c7d # v0.27.0
132
149
env :
133
150
DEBUG : napi:*
134
151
RUSTUP_IO_THREADS : 1
135
152
with :
136
153
operating_system : freebsd
137
- version : " 14.0 "
154
+ version : " 14.2 "
138
155
memory : 8G
139
156
cpu_count : 3
140
157
environment_variables : " DEBUG RUSTUP_IO_THREADS"
@@ -159,7 +176,7 @@ jobs:
159
176
rm -rf node_modules
160
177
rm -rf target
161
178
- name : Upload artifact
162
- uses : actions/upload-artifact@v4
179
+ uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
163
180
with :
164
181
name : bindings-freebsd
165
182
path : napi/*.node
@@ -171,18 +188,20 @@ jobs:
171
188
permissions :
172
189
id-token : write # for `npm publish --provenance`
173
190
needs :
191
+ - check
174
192
- build
175
193
- build-freebsd
194
+ if : needs.check.outputs.version_changed == 'true'
176
195
env :
177
196
COREPACK_INTEGRITY_KEYS : 0
178
197
steps :
179
- - uses : taiki-e/checkout-action@v1
198
+ - uses : taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
180
199
181
200
- name : Install pnpm
182
201
run : corepack enable
183
202
184
203
- name : Setup Node.js
185
- uses : actions/setup-node@v4
204
+ uses : actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
186
205
with :
187
206
node-version-file : .node-version
188
207
cache : pnpm
@@ -191,7 +210,7 @@ jobs:
191
210
run : pnpm install --frozen-lockfile
192
211
193
212
- name : Download Artifacts
194
- uses : actions/download-artifact@v4
213
+ uses : actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
195
214
with :
196
215
path : artifacts
197
216
0 commit comments