-
Notifications
You must be signed in to change notification settings - Fork 1
393 lines (329 loc) · 12.4 KB
/
build.yml
File metadata and controls
393 lines (329 loc) · 12.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
name: Build and Release
on:
push:
branches:
- master
tags:
- 'v*'
pull_request:
workflow_dispatch:
inputs:
publish_npm:
description: 'Publish to npm'
required: false
type: boolean
default: false
jobs:
linux-gnu-x64:
runs-on: ubuntu-24.04
container:
image: alibaba-cloud-linux-3-registry.cn-hangzhou.cr.aliyuncs.com/alinux3/alinux3:latest
env:
ZIG_TARGET: x86_64-linux-gnu
steps:
- name: Install prerequisites
run: yum install -y git curl wget xz tar unzip rsync which python3 python3-pip python3-setuptools autoconf automake libtool pkgconfig gcc gcc-c++ make ninja-build cmake file vim procps-ng iputils
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
run: |
curl -fsSL https://rpm.nodesource.com/setup_18.x | bash -
yum install -y nodejs
- name: Setup Zig
uses: mlugg/setup-zig@v2
with:
version: 0.15.2
- name: Configure Zig environment
run: |
ZIG_BIN=$(command -v zig)
if [ -z "$ZIG_BIN" ]; then
echo "zig binary not found" >&2
exit 1
fi
echo "ZIG_BIN=$ZIG_BIN" >> "$GITHUB_ENV"
echo "CC=$ZIG_BIN cc -target $ZIG_TARGET -fno-sanitize=undefined" >> "$GITHUB_ENV"
echo "CXX=$ZIG_BIN c++ -target $ZIG_TARGET -fno-sanitize=undefined" >> "$GITHUB_ENV"
echo "CFLAGS=-fPIC -fno-sanitize=undefined" >> "$GITHUB_ENV"
echo "CXXFLAGS=-fPIC -fno-sanitize=undefined" >> "$GITHUB_ENV"
echo "LDFLAGS=-static-libstdc++ -static-libgcc -fno-sanitize=undefined" >> "$GITHUB_ENV"
- name: Install npm dependencies
run: npm install --no-audit --prefer-offline
- name: Build RocketMQ native deps
run: ./deps/rocketmq/build.sh
- name: Build addon
run: npx cmake-js compile --CDCMAKE_BUILD_TYPE=Release
- name: Package artifact
run: |
mkdir -p Release
strip --strip-all build/rocketmq.node
cp build/rocketmq.node Release/linux-x86_64-gnu-rocketmq.node
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: linux-x86_64-gnu
path: Release/linux-x86_64-gnu-rocketmq.node
linux-gnu-arm64:
runs-on: ubuntu-24.04-arm
container:
image: alibaba-cloud-linux-3-registry.cn-hangzhou.cr.aliyuncs.com/alinux3/alinux3:latest
env:
ZIG_TARGET: aarch64-linux-gnu
steps:
- name: Install prerequisites
run: yum install -y git curl wget xz tar unzip rsync which python3 python3-pip python3-setuptools autoconf automake libtool pkgconfig gcc gcc-c++ make ninja-build cmake file vim procps-ng iputils
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
run: |
curl -fsSL https://rpm.nodesource.com/setup_18.x | bash -
yum install -y nodejs
- name: Setup Zig
uses: mlugg/setup-zig@v2
with:
version: 0.15.2
- name: Configure Zig environment
run: |
ZIG_BIN=$(command -v zig)
if [ -z "$ZIG_BIN" ]; then
echo "zig binary not found" >&2
exit 1
fi
echo "ZIG_BIN=$ZIG_BIN" >> "$GITHUB_ENV"
echo "CC=$ZIG_BIN cc -target $ZIG_TARGET -fno-sanitize=undefined" >> "$GITHUB_ENV"
echo "CXX=$ZIG_BIN c++ -target $ZIG_TARGET -fno-sanitize=undefined" >> "$GITHUB_ENV"
echo "CFLAGS=-fPIC -fno-sanitize=undefined" >> "$GITHUB_ENV"
echo "CXXFLAGS=-fPIC -fno-sanitize=undefined" >> "$GITHUB_ENV"
echo "LDFLAGS=-static-libstdc++ -static-libgcc -fno-sanitize=undefined" >> "$GITHUB_ENV"
- name: Install npm dependencies
run: npm install --no-audit --prefer-offline
- name: Build RocketMQ native deps
run: ./deps/rocketmq/build.sh
- name: Build addon
run: npx cmake-js compile --CDCMAKE_BUILD_TYPE=Release
- name: Package artifact
run: |
mkdir -p Release
strip --strip-all build/rocketmq.node
cp build/rocketmq.node Release/linux-aarch64-gnu-rocketmq.node
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: linux-aarch64-gnu
path: Release/linux-aarch64-gnu-rocketmq.node
linux-musl-x64:
runs-on: ubuntu-24.04
container:
image: alpine:latest
env:
ZIG_TARGET: x86_64-linux-musl
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install system dependencies
run: apk add --no-cache nodejs npm bash build-base cmake ninja python3 curl unzip git autoconf automake libtool pkgconfig
- name: Upgrade npm
run: npm install -g npm@latest
- name: Setup Zig
uses: mlugg/setup-zig@v2
with:
version: 0.15.2
- name: Configure Zig environment
run: |
ZIG_BIN=$(command -v zig)
if [ -z "$ZIG_BIN" ]; then
echo "zig binary not found" >&2
exit 1
fi
echo "ZIG_BIN=$ZIG_BIN" >> "$GITHUB_ENV"
echo "CC=$ZIG_BIN cc -target $ZIG_TARGET -fno-sanitize=undefined" >> "$GITHUB_ENV"
echo "CXX=$ZIG_BIN c++ -target $ZIG_TARGET -fno-sanitize=undefined" >> "$GITHUB_ENV"
echo "CFLAGS=-fPIC -fno-sanitize=undefined" >> "$GITHUB_ENV"
echo "CXXFLAGS=-fPIC -fno-sanitize=undefined" >> "$GITHUB_ENV"
echo "LDFLAGS=-static-libstdc++ -static-libgcc -fno-sanitize=undefined" >> "$GITHUB_ENV"
- name: Install npm dependencies
run: npm install --no-audit --prefer-offline
- name: Build RocketMQ native deps
run: ./deps/rocketmq/build.sh
- name: Build addon
run: npx cmake-js compile --CDCMAKE_BUILD_TYPE=Release
- name: Package artifact
run: |
mkdir -p Release
strip --strip-all build/rocketmq.node
cp build/rocketmq.node Release/linux-x86_64-musl-rocketmq.node
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: linux-x86_64-musl
path: Release/linux-x86_64-musl-rocketmq.node
linux-musl-arm64:
runs-on: ubuntu-24.04-arm
env:
ZIG_TARGET: aarch64-linux-musl
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential cmake ninja-build python3 curl unzip git autoconf automake libtool pkg-config
- name: Setup Zig
uses: mlugg/setup-zig@v2
with:
version: 0.15.2
- name: Configure Zig environment
run: |
ZIG_BIN=$(command -v zig)
if [ -z "$ZIG_BIN" ]; then
echo "zig binary not found" >&2
exit 1
fi
echo "ZIG_BIN=$ZIG_BIN" >> "$GITHUB_ENV"
echo "CC=$ZIG_BIN cc -target $ZIG_TARGET -fno-sanitize=undefined" >> "$GITHUB_ENV"
echo "CXX=$ZIG_BIN c++ -target $ZIG_TARGET -fno-sanitize=undefined" >> "$GITHUB_ENV"
echo "CFLAGS=-fPIC -fno-sanitize=undefined" >> "$GITHUB_ENV"
echo "CXXFLAGS=-fPIC -fno-sanitize=undefined" >> "$GITHUB_ENV"
echo "LDFLAGS=-static-libstdc++ -static-libgcc -fno-sanitize=undefined" >> "$GITHUB_ENV"
- name: Install npm dependencies
run: npm install --no-audit --prefer-offline
- name: Build RocketMQ native deps
run: ./deps/rocketmq/build.sh
- name: Build addon
run: npx cmake-js compile --CDCMAKE_BUILD_TYPE=Release
- name: Package artifact
run: |
mkdir -p Release
strip --strip-all build/rocketmq.node
cp build/rocketmq.node Release/linux-aarch64-musl-rocketmq.node
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: linux-aarch64-musl
path: Release/linux-aarch64-musl-rocketmq.node
macos-universal:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install build tools
run: brew install cmake ninja xz autoconf automake libtool pkg-config
- name: Install npm dependencies
run: npm install --no-audit --prefer-offline
- name: Build RocketMQ native deps
run: ./deps/rocketmq/build.sh
- name: Build addon
run: |
npx cmake-js compile --CDCMAKE_BUILD_TYPE=Release \
--CDCMAKE_OSX_ARCHITECTURES="arm64;x86_64" \
--CDCMAKE_OSX_DEPLOYMENT_TARGET=11 \
--CDCMAKE_SKIP_DEPENDENCY_TRACKING=ON
- name: Package artifact
run: |
mkdir -p Release
strip -S -x build/rocketmq.node
cp build/rocketmq.node Release/darwin-universal-rocketmq.node
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: darwin-universal
path: Release/darwin-universal-rocketmq.node
release:
needs: [linux-gnu-x64, linux-gnu-arm64, linux-musl-x64, linux-musl-arm64, macos-universal]
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Prepare Release directory
run: |
mkdir -p Release
find artifacts -name "*.node" -exec cp {} Release/ \;
ls -lh Release/
- name: Create Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ github.ref_name }}
name: ${{ github.ref_name }}
draft: false
prerelease: false
files: Release/*.node
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish-npm:
needs: release
runs-on: ubuntu-latest
if: (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')) || (github.event_name == 'workflow_dispatch' && inputs.publish_npm)
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Prepare Release directory
run: |
mkdir -p Release
find artifacts -name "*.node" -exec cp {} Release/ \;
ls -lh Release/
- name: Verify version consistency
if: startsWith(github.ref, 'refs/tags/v')
run: |
PKG_VERSION=$(node -p "require('./package.json').version")
TAG_VERSION=${GITHUB_REF#refs/tags/v}
if [ "$PKG_VERSION" != "$TAG_VERSION" ]; then
echo "❌ Version mismatch: package.json=$PKG_VERSION, tag=$TAG_VERSION"
exit 1
fi
echo "✅ Version consistent: $PKG_VERSION"
- name: Install dependencies (skip native build)
run: npm ci --ignore-scripts
- name: Build TypeScript
run: npm run build:ts
- name: Validate build output
run: |
echo "Validating TypeScript build..."
if [ ! -f "dist/index.js" ]; then
echo "❌ dist/index.js not found"
exit 1
fi
if [ ! -f "dist/index.d.ts" ]; then
echo "❌ dist/index.d.ts not found"
exit 1
fi
echo "✅ TypeScript build verified"
echo "Validating native addons..."
for f in linux-x86_64-gnu linux-aarch64-gnu linux-x86_64-musl linux-aarch64-musl darwin-universal; do
if [ ! -f "Release/${f}-rocketmq.node" ]; then
echo "❌ Missing: ${f}-rocketmq.node"
exit 1
fi
done
echo "✅ All native addons present"
- name: Verify package contents
run: |
echo "=== Package contents ==="
npm pack --dry-run
echo ""
echo "=== Release binaries ==="
ls -lh Release/
- name: Publish to npm
run: npm publish --ignore-scripts
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}