Skip to content

Commit 45e4c37

Browse files
committed
ci: test new napi build workflow
1 parent f621a7d commit 45e4c37

File tree

3 files changed

+57
-14
lines changed

3 files changed

+57
-14
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

+45-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,67 @@ 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
5760
- os: windows-latest
5861
target: i686-pc-windows-msvc
62+
architecture: x86
63+
build: pnpm build
5964
- os: ubuntu-latest
6065
target: x86_64-unknown-linux-gnu
66+
build: pnpm build --use-napi-cross
6167
- os: ubuntu-latest
6268
target: x86_64-unknown-linux-musl
69+
build: pnpm build -x
6370
- os: ubuntu-latest
6471
target: aarch64-unknown-linux-gnu
72+
build: pnpm build --use-napi-cross
6573
- os: ubuntu-latest
6674
target: aarch64-unknown-linux-musl
75+
build: pnpm build -x
6776
- os: ubuntu-latest
6877
target: armv7-unknown-linux-gnueabihf
78+
build: pnpm build --use-napi-cross
6979
- os: ubuntu-latest
7080
target: armv7-unknown-linux-musleabihf
81+
build: pnpm build -x
7182
- os: ubuntu-latest
7283
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
7389
- os: ubuntu-latest
7490
target: powerpc64le-unknown-linux-gnu
91+
build: pnpm build --use-napi-cross
7592
- os: ubuntu-latest
7693
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
7799
- os: macos-latest
78100
target: x86_64-apple-darwin
101+
build: pnpm build
79102
- os: macos-latest
80103
target: aarch64-apple-darwin
104+
build: pnpm build
81105
- os: ubuntu-latest
82106
target: wasm32-wasip1-threads
107+
build: pnpm build
83108

84109
name: Package ${{ matrix.target }}
85110
runs-on: ${{ matrix.os }}
86111
steps:
87112
- uses: taiki-e/checkout-action@v1
88113

89114
- uses: ./.github/actions/pnpm
115+
with:
116+
architecture: ${{ matrix.architecture }}
90117

91118
- run: rustup target add ${{ matrix.target }}
92119

@@ -95,21 +122,24 @@ jobs:
95122
with:
96123
version: 0.13.0
97124

98-
- name: Build with zig cross
125+
- name: Install cargo-zigbuild
126+
uses: taiki-e/install-action@v2
99127
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') }}
104128
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
107137

108138
- name: Build
109-
if: ${{ !contains(matrix.target, 'gnu') && !contains(matrix.target, 'musl') }}
139+
run: ${{ matrix.build }} --target ${{ matrix.target }}
140+
shell: bash
110141
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' || '' }}
113143

114144
- name: Upload artifacts
115145
uses: actions/upload-artifact@v4
@@ -118,10 +148,11 @@ jobs:
118148
path: |
119149
napi/*.node
120150
napi/*.wasm
151+
if-no-files-found: error
121152

122153
build-freebsd:
123154
needs: check
124-
if: needs.check.outputs.version_changed == 'true'
155+
# if: needs.check.outputs.version_changed == 'true'
125156
name: Build FreeBSD
126157
runs-on: ubuntu-latest
127158
steps:
@@ -171,8 +202,10 @@ jobs:
171202
permissions:
172203
id-token: write # for `npm publish --provenance`
173204
needs:
205+
- check
174206
- build
175207
- build-freebsd
208+
if: needs.check.outputs.version_changed == 'true'
176209
env:
177210
COREPACK_INTEGRITY_KEYS: 0
178211
steps:

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"url": "https://github.com/sponsors/Boshen"
1111
},
1212
"scripts": {
13-
"build": "napi build --platform --release --package-json-path npm/package.json --manifest-path napi/Cargo.toml",
14-
"build:debug": "napi build --platform --package-json-path npm/package.json --manifest-path napi/Cargo.toml",
13+
"build": "napi build --platform --release --strip --package-json-path npm/package.json --manifest-path napi/Cargo.toml",
14+
"build:debug": "napi build --platform --strip --package-json-path npm/package.json --manifest-path napi/Cargo.toml",
1515
"prepublishOnly": "napi pre-publish -t npm",
1616
"test": "vitest run -r ./napi"
1717
},

0 commit comments

Comments
 (0)