Skip to content

Commit e06f086

Browse files
committed
ci: apply suggestions
1 parent 29f694b commit e06f086

File tree

5 files changed

+17
-23
lines changed

5 files changed

+17
-23
lines changed

.github/workflows/release-napi.yml

+13-20
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ on:
1010
pull_request: null
1111

1212
env:
13-
DEBUG: "napi:*"
13+
DEBUG: napi:*
14+
APP_NAME: rspack-resolver
15+
OXC_LOG: debug
16+
MACOSX_DEPLOYMENT_TARGET: 10.13
17+
CC: clang
1418

1519
concurrency:
1620
group: ${{ github.workflow }}-${{ github.ref }}
@@ -81,21 +85,17 @@ jobs:
8185
build: pnpm build -x
8286
- os: ubuntu-latest
8387
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
88+
build: |
89+
export CFLAGS="-fuse-ld=lld"
90+
pnpm build --use-napi-cross
8991
- os: ubuntu-latest
9092
target: powerpc64le-unknown-linux-gnu
9193
build: pnpm build --use-napi-cross
9294
- os: ubuntu-latest
9395
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
96+
build: |
97+
export CFLAGS="-fuse-ld=lld"
98+
pnpm build --use-napi-cross
9999
- os: macos-latest
100100
target: x86_64-apple-darwin
101101
build: pnpm build
@@ -123,23 +123,16 @@ jobs:
123123
version: 0.13.0
124124

125125
- name: Install cargo-zigbuild
126-
uses: taiki-e/install-action@v2
126+
uses: taiki-e/install-action@5651179950649c44da31d346537e20c0534f0f25 # v2
127127
if: ${{ contains(matrix.target, 'musl') }}
128128
env:
129129
GITHUB_TOKEN: ${{ github.token }}
130130
with:
131131
tool: cargo-zigbuild
132132

133-
- name: Setup toolchain
134-
if: ${{ matrix.setup }}
135-
run: ${{ matrix.setup }}
136-
shell: bash
137-
138133
- name: Build
139134
run: ${{ matrix.build }} --target ${{ matrix.target }}
140135
shell: bash
141-
env:
142-
CC: ${{ matrix.target != 'riscv64gc-unknown-linux-gnu' && matrix.target != 's390x-unknown-linux-gnu' && 'clang' || '' }}
143136

144137
- name: Upload artifacts
145138
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
@@ -165,7 +158,7 @@ jobs:
165158
RUSTUP_IO_THREADS: 1
166159
with:
167160
operating_system: freebsd
168-
version: "14.0"
161+
version: "14.2"
169162
memory: 8G
170163
cpu_count: 3
171164
environment_variables: "DEBUG RUSTUP_IO_THREADS"

dprint.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"$schema": "https://dprint.dev/schemas/v0.json",
23
"lineWidth": 120,
34
"typescript": {
45
"quoteStyle": "preferSingle",

napi/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ tracing-subscriber = { version = "0.3.18", default-features = false, features =
1919
[target.'cfg(all(not(target_os = "linux"), not(target_os = "freebsd"), not(target_arch = "arm"), not(target_family = "wasm")))'.dependencies]
2020
mimalloc-safe = { version = "0.1.49", features = ["skip_collect_on_exit"] }
2121

22-
[target.'cfg(any(all(target_os = "linux", not(target_arch = "arm")), target_os = "freebsd"))'.dependencies]
22+
[target.'cfg(all(target_os = "linux", not(target_arch = "arm")))'.dependencies]
2323
mimalloc-safe = { version = "0.1.49", features = ["skip_collect_on_exit", "local_dynamic_tls"] }
2424

2525
[build-dependencies]

napi/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[cfg(all(not(target_arch = "arm"), not(target_family = "wasm")))]
1+
#[cfg(all(not(target_arch = "arm"), not(target_os = "freebsd"), not(target_family = "wasm")))]
22
#[global_allocator]
33
static ALLOC: mimalloc_safe::MiMalloc = mimalloc_safe::MiMalloc;
44

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"url": "https://github.com/unrs/rspack-resolver.git"
88
},
99
"funding": {
10-
"url": "https://github.com/sponsors/Boshen"
10+
"url": "https://github.com/sponsors/JounQin"
1111
},
1212
"scripts": {
1313
"build": "napi build --platform --release --strip --package-json-path npm/package.json --manifest-path napi/Cargo.toml",

0 commit comments

Comments
 (0)