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