Skip to content

Commit 6bef961

Browse files
committed
feat: add riscv64gc-unknown-linux-gnu target
1 parent 0197455 commit 6bef961

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/release-napi.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
4747
build:
4848
needs: check
49-
if: needs.check.outputs.version_changed == 'true'
49+
# if: needs.check.outputs.version_changed == 'true'
5050
env:
5151
version: ${{ needs.check.outputs.version }}
5252
outputs:
@@ -83,6 +83,9 @@ jobs:
8383
- os: ubuntu-latest
8484
target: armv7-unknown-linux-musleabihf
8585
build: pnpm build -x
86+
- os: ubuntu-latest
87+
target: riscv64gc-unknown-linux-gnu
88+
build: export CFLAGS="-fuse-ld=lld" && pnpm build --use-napi-cross
8689
- os: ubuntu-latest
8790
target: powerpc64le-unknown-linux-gnu
8891
build: pnpm build --use-napi-cross
@@ -138,7 +141,7 @@ jobs:
138141

139142
build-freebsd:
140143
needs: check
141-
if: needs.check.outputs.version_changed == 'true'
144+
# if: needs.check.outputs.version_changed == 'true'
142145
name: Build FreeBSD
143146
runs-on: ubuntu-latest
144147
steps:
@@ -188,8 +191,10 @@ jobs:
188191
permissions:
189192
id-token: write # for `npm publish --provenance`
190193
needs:
194+
- check
191195
- build
192196
- build-freebsd
197+
if: needs.check.outputs.version_changed == 'true'
193198
env:
194199
COREPACK_INTEGRITY_KEYS: 0
195200
steps:

npm/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"armv7-unknown-linux-gnueabihf",
4040
"armv7-unknown-linux-musleabihf",
4141
"powerpc64le-unknown-linux-gnu",
42+
"riscv64gc-unknown-linux-gnu",
4243
"s390x-unknown-linux-gnu",
4344
"x86_64-apple-darwin",
4445
"aarch64-apple-darwin",

0 commit comments

Comments
 (0)