Skip to content

Commit 53184c8

Browse files
committed
feat: add riscv64gc-unknown-linux-gnu target
1 parent d0ee2a8 commit 53184c8

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

.github/workflows/release-napi.yml

+12-2
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:*
@@ -44,7 +45,11 @@ jobs:
4445

4546
build:
4647
needs: check
47-
if: needs.check.outputs.version_changed == 'true'
48+
# if: needs.check.outputs.version_changed == 'true'
49+
env:
50+
version: ${{ needs.check.outputs.version }}
51+
outputs:
52+
version: ${{ env.version }}
4853
strategy:
4954
fail-fast: false
5055
matrix:
@@ -77,6 +82,9 @@ jobs:
7782
- os: ubuntu-latest
7883
target: armv7-unknown-linux-musleabihf
7984
build: pnpm build -x
85+
- os: ubuntu-latest
86+
target: riscv64gc-unknown-linux-gnu
87+
build: export CFLAGS="-fuse-ld=lld" && pnpm build --use-napi-cross
8088
- os: ubuntu-latest
8189
target: powerpc64le-unknown-linux-gnu
8290
build: pnpm build --use-napi-cross
@@ -132,7 +140,7 @@ jobs:
132140

133141
build-freebsd:
134142
needs: check
135-
if: needs.check.outputs.version_changed == 'true'
143+
# if: needs.check.outputs.version_changed == 'true'
136144
name: Build FreeBSD
137145
runs-on: ubuntu-latest
138146
steps:
@@ -182,8 +190,10 @@ jobs:
182190
permissions:
183191
id-token: write # for `npm publish --provenance`
184192
needs:
193+
- check
185194
- build
186195
- build-freebsd
196+
if: needs.check.outputs.version_changed == 'true'
187197
env:
188198
COREPACK_INTEGRITY_KEYS: 0
189199
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)