Skip to content

Commit 621f131

Browse files
committed
ci: test new nap build workflow
1 parent f621a7d commit 621f131

File tree

2 files changed

+58
-12
lines changed

2 files changed

+58
-12
lines changed

.github/actions/pnpm/action.yml

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ name: Pnpm
22

33
description: Install pnpm
44

5+
inputs:
6+
architecture:
7+
description: The architecture to use
8+
required: false
9+
510
runs:
611
using: composite
712
steps:
@@ -10,8 +15,13 @@ runs:
1015
- uses: actions/setup-node@v4
1116
with:
1217
node-version-file: .node-version
18+
architecture: ${{ inputs.architecture }}
1319
cache: pnpm
1420

21+
- if: ${{ inputs.architecture == 'x86' }}
22+
shell: bash
23+
run: pnpm config set supportedArchitectures.cpu "ia32"
24+
1525
- name: pnpm
1626
shell: bash
1727
run: |

.github/workflows/release-napi.yml

+48-12
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- main
88
paths:
99
- npm/package.json # Please only commit this file, so we don't need to wait for test CI to pass.
10+
pull_request: null
1011

1112
env:
1213
DEBUG: "napi:*"
@@ -41,7 +42,7 @@ jobs:
4142
4243
build:
4344
needs: check
44-
if: needs.check.outputs.version_changed == 'true'
45+
# if: needs.check.outputs.version_changed == 'true'
4546
env:
4647
version: ${{ needs.check.outputs.version }}
4748
outputs:
@@ -52,41 +53,70 @@ jobs:
5253
include:
5354
- os: windows-latest
5455
target: x86_64-pc-windows-msvc
56+
build: pnpm build
5557
- os: windows-latest
5658
target: aarch64-pc-windows-msvc
59+
build: pnpm build --target aarch64-pc-windows-msvc
5760
- os: windows-latest
5861
target: i686-pc-windows-msvc
62+
architecture: x86
63+
build: |
64+
pnpm build --target i686-pc-windows-msvc
65+
pnpm test
5966
- os: ubuntu-latest
6067
target: x86_64-unknown-linux-gnu
68+
build: pnpm build --target x86_64-unknown-linux-gnu --use-napi-cross
6169
- os: ubuntu-latest
6270
target: x86_64-unknown-linux-musl
71+
build: pnpm build --target x86_64-unknown-linux-musl -x
6372
- os: ubuntu-latest
6473
target: aarch64-unknown-linux-gnu
74+
build: pnpm build --target aarch64-unknown-linux-gnu --use-napi-cross
6575
- os: ubuntu-latest
6676
target: aarch64-unknown-linux-musl
77+
build: pnpm build --target aarch64-unknown-linux-musl -x
6778
- os: ubuntu-latest
6879
target: armv7-unknown-linux-gnueabihf
80+
build: pnpm build --target armv7-unknown-linux-gnueabihf --use-napi-cross
6981
- os: ubuntu-latest
7082
target: armv7-unknown-linux-musleabihf
83+
build: pnpm build --target armv7-unknown-linux-musleabihf -x
7184
- os: ubuntu-latest
7285
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
7390
- os: ubuntu-latest
7491
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
7596
- os: ubuntu-latest
7697
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
77102
- os: macos-latest
78103
target: x86_64-apple-darwin
104+
build: pnpm build --target x86_64-apple-darwin
79105
- os: macos-latest
80106
target: aarch64-apple-darwin
107+
build: pnpm build --target aarch64-apple-darwin
81108
- os: ubuntu-latest
82109
target: wasm32-wasip1-threads
110+
build: pnpm build --target wasm32-wasip1-threads
83111

84112
name: Package ${{ matrix.target }}
85113
runs-on: ${{ matrix.os }}
86114
steps:
87115
- uses: taiki-e/checkout-action@v1
88116

89117
- uses: ./.github/actions/pnpm
118+
with:
119+
architecture: ${{ matrix.architecture }}
90120

91121
- run: rustup target add ${{ matrix.target }}
92122

@@ -95,21 +125,24 @@ jobs:
95125
with:
96126
version: 0.13.0
97127

98-
- name: Build with zig cross
128+
- name: Install cargo-zigbuild
129+
uses: taiki-e/install-action@v2
99130
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') }}
104131
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
107140

108141
- name: Build
109-
if: ${{ !contains(matrix.target, 'gnu') && !contains(matrix.target, 'musl') }}
142+
run: ${{ matrix.build }}
143+
shell: bash
110144
env:
111-
CC: clang # for mimalloc
112-
run: pnpm build --target ${{ matrix.target }}
145+
CC: clang
113146

114147
- name: Upload artifacts
115148
uses: actions/upload-artifact@v4
@@ -118,10 +151,11 @@ jobs:
118151
path: |
119152
napi/*.node
120153
napi/*.wasm
154+
if-no-files-found: error
121155

122156
build-freebsd:
123157
needs: check
124-
if: needs.check.outputs.version_changed == 'true'
158+
# if: needs.check.outputs.version_changed == 'true'
125159
name: Build FreeBSD
126160
runs-on: ubuntu-latest
127161
steps:
@@ -171,8 +205,10 @@ jobs:
171205
permissions:
172206
id-token: write # for `npm publish --provenance`
173207
needs:
208+
- check
174209
- build
175210
- build-freebsd
211+
if: needs.check.outputs.version_changed == 'true'
176212
env:
177213
COREPACK_INTEGRITY_KEYS: 0
178214
steps:

0 commit comments

Comments
 (0)