@@ -2,10 +2,13 @@ name: CI
2
2
env :
3
3
DEBUG : ' napi:*'
4
4
MACOSX_DEPLOYMENT_TARGET : ' 10.13'
5
- NODE_OPTIONS : ' --max-old-space-size=3072'
6
5
CARGO_UNSTABLE_TARGET_APPLIES_TO_HOST : true
7
6
CARGO_TARGET_APPLIES_TO_HOST : false
8
7
8
+ permissions :
9
+ contents : write
10
+ id-token : write
11
+
9
12
on :
10
13
push :
11
14
branches :
32
35
target : ' x86_64-pc-windows-msvc'
33
36
- host : windows-latest
34
37
build : |
35
- yarn lerna exec "yarn build --target i686-pc-windows-msvc" --concurrency 1 --stream --no-prefix
38
+ yarn build --target i686-pc-windows-msvc
36
39
yarn test -s
37
40
target : ' i686-pc-windows-msvc'
38
41
- host : ubuntu-latest
41
44
build : >-
42
45
set -e &&
43
46
rustup target add x86_64-unknown-linux-gnu &&
44
- yarn lerna exec "yarn build --target x86_64-unknown-linux-gnu" --concurrency 1 --stream --no-prefix &&
47
+ yarn build --target x86_64-unknown-linux-gnu &&
45
48
strip packages/*/*.node
46
49
- host : ubuntu-latest
47
50
target : ' x86_64-unknown-linux-musl'
@@ -55,31 +58,31 @@ jobs:
55
58
export CXX=$(xcrun -f clang++);
56
59
SYSROOT=$(xcrun --sdk macosx --show-sdk-path);
57
60
export CFLAGS="-isysroot $SYSROOT -isystem $SYSROOT";
58
- yarn lerna exec "yarn build --target aarch64-apple-darwin" --concurrency 1 --stream --no-prefix
61
+ yarn build --target aarch64-apple-darwin
59
62
strip -x packages/*/*.node
60
63
- host : ubuntu-latest
61
64
target : aarch64-unknown-linux-gnu
62
65
docker : ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian-aarch64
63
66
build : >-
64
67
rustup target add aarch64-unknown-linux-gnu &&
65
- yarn lerna exec "yarn build --target aarch64-unknown-linux-gnu" --concurrency 1 --stream --no-prefix &&
68
+ yarn build --target aarch64-unknown-linux-gnu &&
66
69
llvm-strip packages/*/*.node
67
70
- host : ubuntu-latest
68
71
target : ' armv7-unknown-linux-gnueabihf'
69
72
setup : |
70
73
sudo apt-get update
71
74
sudo apt-get install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf -y
72
- build : yarn lerna exec "yarn build --target armv7-unknown-linux-gnueabihf" --concurrency 1 --stream --no-prefix
75
+ build : yarn build --target armv7-unknown-linux-gnueabihf
73
76
- host : ubuntu-latest
74
77
target : aarch64-linux-android
75
78
build : |
76
- yarn lerna exec "yarn build --target aarch64-linux-android" --concurrency 1 --stream --no-prefix
79
+ yarn build --target aarch64-linux-android
77
80
${ANDROID_NDK_LATEST_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip packages/*/*.node
78
81
- host : ubuntu-latest
79
82
architecture : x64
80
83
target : armv7-linux-androideabi
81
84
build : |
82
- yarn lerna exec "yarn build --target armv7-linux-androideabi" --concurrency 1 --stream --no-prefix
85
+ yarn build --target armv7-linux-androideabi
83
86
${ANDROID_NDK_LATEST_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip packages/*/*.node
84
87
- host : ubuntu-latest
85
88
target : ' aarch64-unknown-linux-musl'
@@ -88,10 +91,12 @@ jobs:
88
91
build : >-
89
92
set -e &&
90
93
rustup target add aarch64-unknown-linux-musl &&
91
- yarn lerna exec "yarn build --target aarch64-unknown-linux-musl" --concurrency 1 --stream --no-prefix
94
+ yarn build --target aarch64-unknown-linux-musl
92
95
- host : windows-latest
93
96
target : ' aarch64-pc-windows-msvc'
94
- build : yarn lerna exec "yarn build --target aarch64-pc-windows-msvc" --ignore @node-rs/jsonwebtoken --concurrency 1 --stream --no-prefix
97
+ build : |
98
+ npm i -g @napi-rs/cli
99
+ yarn workspaces foreach --no-private -j 1 --exclude @node-rs/jsonwebtoken run build --target aarch64-pc-windows-msvc
95
100
96
101
name : stable - ${{ matrix.settings.target }} - node@18
97
102
runs-on : ${{ matrix.settings.host }}
@@ -104,14 +109,13 @@ jobs:
104
109
if : ${{ !matrix.settings.docker }}
105
110
with :
106
111
node-version : 18
107
- check-latest : true
108
112
cache : yarn
109
113
110
114
- name : Install
111
115
uses : dtolnay/rust-toolchain@stable
112
116
if : ${{ !matrix.settings.docker }}
113
117
with :
114
- toolchain : nightly-2023-04-23
118
+ toolchain : nightly-2023-07-19
115
119
targets : ${{ matrix.settings.target }}
116
120
117
121
- name : Cache cargo registry
@@ -158,7 +162,6 @@ jobs:
158
162
if : matrix.settings.target == 'i686-pc-windows-msvc'
159
163
with :
160
164
node-version : 18
161
- check-latest : true
162
165
cache : yarn
163
166
architecture : x86
164
167
@@ -192,9 +195,7 @@ jobs:
192
195
usesh : true
193
196
mem : 3000
194
197
prepare : |
195
- pkg install -y -f curl node libnghttp2
196
- curl -qL https://www.npmjs.com/install.sh | sh
197
- npm install --location=global --ignore-scripts yarn
198
+ pkg install -y -f curl node libnghttp2 npm yarn
198
199
curl https://sh.rustup.rs -sSf --output rustup.sh
199
200
sh rustup.sh -y --profile minimal --default-toolchain stable
200
201
export PATH="/usr/local/cargo/bin:$PATH"
@@ -239,7 +240,7 @@ jobs:
239
240
target : ' x86_64-apple-darwin'
240
241
- host : windows-latest
241
242
target : ' x86_64-pc-windows-msvc'
242
- node : ['14', ' 16', '18']
243
+ node : ['16', '18']
243
244
runs-on : ${{ matrix.settings.host }}
244
245
245
246
steps :
@@ -251,7 +252,6 @@ jobs:
251
252
uses : actions/setup-node@v3
252
253
with :
253
254
node-version : ${{ matrix.node }}
254
- check-latest : true
255
255
cache : yarn
256
256
257
257
- name : Install dependencies
@@ -286,7 +286,7 @@ jobs:
286
286
strategy :
287
287
fail-fast : false
288
288
matrix :
289
- node : ['14', ' 16', '18']
289
+ node : ['16', '18']
290
290
runs-on : ubuntu-latest
291
291
292
292
steps :
@@ -296,7 +296,6 @@ jobs:
296
296
uses : actions/setup-node@v3
297
297
with :
298
298
node-version : ${{ matrix.node }}
299
- check-latest : true
300
299
cache : yarn
301
300
302
301
- name : Install dependencies
@@ -325,7 +324,6 @@ jobs:
325
324
image : node:${{ matrix.node }}-slim
326
325
options : -v ${{ github.workspace }}:/build -w /build
327
326
run : |
328
- yarn lerna link
329
327
yarn test
330
328
331
329
test-linux-x64-centos-7 :
@@ -364,7 +362,6 @@ jobs:
364
362
365
363
- name : Test bindings
366
364
run : |
367
- yarn lerna link
368
365
yarn test -s
369
366
370
367
test-linux-x64-musl-binding :
@@ -374,7 +371,7 @@ jobs:
374
371
strategy :
375
372
fail-fast : false
376
373
matrix :
377
- node : ['14', ' 16', '18']
374
+ node : ['16', '18']
378
375
runs-on : ubuntu-latest
379
376
380
377
steps :
@@ -384,7 +381,6 @@ jobs:
384
381
uses : actions/setup-node@v3
385
382
with :
386
383
node-version : ${{ matrix.node }}
387
- check-latest : true
388
384
cache : yarn
389
385
390
386
- name : Install dependencies
@@ -415,7 +411,6 @@ jobs:
415
411
image : node:${{ matrix.node }}-alpine
416
412
options : -v ${{ github.workspace }}:/build -w /build
417
413
run : |
418
- yarn lerna link
419
414
yarn test
420
415
421
416
test-linux-aarch64-gnu-binding :
@@ -425,12 +420,10 @@ jobs:
425
420
strategy :
426
421
fail-fast : false
427
422
matrix :
428
- node : ['14', ' 16', '18']
423
+ node : ['16', '18']
429
424
runs-on : ubuntu-latest
430
425
431
426
steps :
432
- - run : docker run --rm --privileged multiarch/qemu-user-static:register --reset
433
-
434
427
- uses : actions/checkout@v3
435
428
436
429
- name : Download artifacts
@@ -453,11 +446,17 @@ jobs:
453
446
run : ls -R packages
454
447
shell : bash
455
448
449
+ - name : Set up QEMU
450
+ uses : docker/setup-qemu-action@v2
451
+ with :
452
+ platforms : arm64
453
+ - run : docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
454
+
456
455
- name : Setup and run tests
457
456
uses : addnab/docker-run-action@v3
458
457
with :
459
- image : ghcr.io/napi-rs/napi-rs/nodejs:aarch64- ${{ matrix.node }}
460
- options : -v ${{ github.workspace }}:/build -w /build
458
+ image : node: ${{ matrix.node }}-slim
459
+ options : --platform linux/arm64 - v ${{ github.workspace }}:/build -w /build
461
460
run : |
462
461
set -e
463
462
yarn build:ts
@@ -472,8 +471,6 @@ jobs:
472
471
runs-on : ubuntu-latest
473
472
474
473
steps :
475
- - run : docker run --rm --privileged multiarch/qemu-user-static:register --reset
476
-
477
474
- uses : actions/checkout@v3
478
475
479
476
- name : Install dependencies
@@ -496,14 +493,19 @@ jobs:
496
493
run : ls -R packages
497
494
shell : bash
498
495
496
+ - name : Set up QEMU
497
+ uses : docker/setup-qemu-action@v2
498
+ with :
499
+ platforms : arm64
500
+ - run : docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
501
+
499
502
- name : Setup and run tests
500
503
uses : addnab/docker-run-action@v3
501
504
with :
502
- image : multiarch/alpine:aarch64-latest-stable
503
- options : -v ${{ github.workspace }}:/build -w /build
505
+ image : node:lts-alpine
506
+ options : --platform linux/arm64 - v ${{ github.workspace }}:/build -w /build
504
507
run : |
505
508
set -e
506
- apk add nodejs npm yarn
507
509
yarn build:ts
508
510
yarn test
509
511
@@ -514,12 +516,10 @@ jobs:
514
516
strategy :
515
517
fail-fast : false
516
518
matrix :
517
- node : ['14', ' 16', '18']
519
+ node : ['16', '18']
518
520
runs-on : ubuntu-latest
519
521
520
522
steps :
521
- - run : docker run --rm --privileged multiarch/qemu-user-static:register --reset
522
-
523
523
- uses : actions/checkout@v3
524
524
525
525
- name : Install dependencies
@@ -541,11 +541,17 @@ jobs:
541
541
run : ls -R ./packages
542
542
shell : bash
543
543
544
+ - name : Set up QEMU
545
+ uses : docker/setup-qemu-action@v2
546
+ with :
547
+ platforms : arm
548
+ - run : docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
549
+
544
550
- name : Setup and run tests
545
551
uses : addnab/docker-run-action@v3
546
552
with :
547
- image : ghcr.io/napi-rs/napi-rs/nodejs:armhf- ${{ matrix.node }}
548
- options : -v ${{ github.workspace }}:/build -w /build
553
+ image : node: ${{ matrix.node }}-bullseye-slim
554
+ options : --platform linux/arm/v7 - v ${{ github.workspace }}:/build -w /build
549
555
run : |
550
556
set -e
551
557
yarn build:ts
@@ -598,6 +604,7 @@ jobs:
598
604
- name : Lerna publish
599
605
if : " startsWith(github.event.head_commit.message, 'chore(release): publish')"
600
606
run : |
607
+ npm config set provenance true
601
608
find ./packages/ -type d -maxdepth 1 -exec cp LICENSE {} \;
602
609
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
603
610
yarn lerna publish from-package --no-verify-access --yes
0 commit comments