Skip to content

Commit f560021

Browse files
committed
feat: add riscv64gc-unknown-linux-gnu target
1 parent 9d8326f commit f560021

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

.github/workflows/release-napi.yml

+9-3
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:*
@@ -33,7 +34,7 @@ jobs:
3334
id: version
3435
with:
3536
static-checking: localIsNew
36-
file-url: https://cdn.jsdelivr.net/npm/unrs-resolver@latest/package.json
37+
file-url: https://unpkg.com/unrs-resolver@latest/package.json
3738
file-name: npm/package.json
3839

3940
- name: Set version name
@@ -44,7 +45,7 @@ jobs:
4445

4546
build:
4647
needs: check
47-
if: needs.check.outputs.version_changed == 'true'
48+
# if: needs.check.outputs.version_changed == 'true'
4849
strategy:
4950
fail-fast: false
5051
matrix:
@@ -77,6 +78,9 @@ jobs:
7778
- os: ubuntu-latest
7879
target: armv7-unknown-linux-musleabihf
7980
build: pnpm build -x
81+
- os: ubuntu-latest
82+
target: riscv64gc-unknown-linux-gnu
83+
build: export CFLAGS="-fuse-ld=lld" && pnpm build --use-napi-cross
8084
- os: ubuntu-latest
8185
target: powerpc64le-unknown-linux-gnu
8286
build: pnpm build --use-napi-cross
@@ -132,7 +136,7 @@ jobs:
132136

133137
build-freebsd:
134138
needs: check
135-
if: needs.check.outputs.version_changed == 'true'
139+
# if: needs.check.outputs.version_changed == 'true'
136140
name: Build FreeBSD
137141
runs-on: ubuntu-latest
138142
steps:
@@ -182,8 +186,10 @@ jobs:
182186
permissions:
183187
id-token: write # for `npm publish --provenance`
184188
needs:
189+
- check
185190
- build
186191
- build-freebsd
192+
if: needs.check.outputs.version_changed == 'true'
187193
env:
188194
COREPACK_INTEGRITY_KEYS: 0
189195
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",

release-plz.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace]
22
semver_check = true
3-
allow_dirty = true # The "fixtures" is being marked as dirty.
3+
allow_dirty = true # The "fixtures" is being marked as dirty.
44
changelog_config = "cliff.toml"
55
git_tag_name = "v{{ version }}"

0 commit comments

Comments
 (0)