Skip to content

Commit 5cd9ced

Browse files
committed
chore: release v1.3.0
1 parent 6a11204 commit 5cd9ced

28 files changed

+233
-214
lines changed

.github/actions/pnpm/action.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,26 @@ 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:
8-
- uses: pnpm/action-setup@v4
13+
- uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4
914

10-
- uses: actions/setup-node@v4
15+
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # 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/autofix.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,31 +14,31 @@ jobs:
1414
autofix:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: taiki-e/checkout-action@v1
17+
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
1818

19-
- uses: oxc-project/[email protected]
19+
- uses: oxc-project/setup-rust@cd82e1efec7fef815e2c23d296756f31c7cdc03d # v1.0.0
2020
with:
2121
restore-cache: false
2222
tools: just,cargo-shear@1,dprint
2323
components: rustfmt
2424

2525
- name: Restore dprint plugin cache
2626
id: cache-restore
27-
uses: actions/cache/restore@v4
27+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4
2828
with:
2929
key: dprint-autofix-ci-${{ runner.os }}-${{ hashFiles('dprint.json') }}
3030
path: ~/.cache/dprint
3131

3232
- run: just fmt
3333

34-
- uses: autofix-ci/action@v1
34+
- uses: autofix-ci/action@2891949f3779a1cafafae1523058501de3d4e944 # v1
3535
with:
3636
fail-fast: false
3737

3838
- name: Save dprint plugin cache
3939
if: ${{ github.ref_name == 'main' }}
4040
id: cache-save
41-
uses: actions/cache/save@v4
41+
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4
4242
with:
4343
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
4444
path: ~/.cache/dprint

.github/workflows/benchmark.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
name: Benchmark
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: taiki-e/checkout-action@v1
28+
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
2929

30-
- uses: oxc-project/[email protected]
30+
- uses: oxc-project/setup-rust@cd82e1efec7fef815e2c23d296756f31c7cdc03d # v1.0.0
3131
with:
3232
cache-key: benchmark
3333
save-cache: ${{ github.ref_name == 'main' }}
@@ -39,7 +39,7 @@ jobs:
3939
env:
4040
RUSTFLAGS: "-C debuginfo=1 -C strip=none"
4141

42-
- uses: CodSpeedHQ/action@v3
42+
- uses: CodSpeedHQ/action@0010eb0ca6e89b80c88e8edaaa07cfe5f3e6664d # v3
4343
timeout-minutes: 30
4444
with:
4545
run: cargo codspeed run

.github/workflows/ci.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ jobs:
2929
name: Lint
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: taiki-e/checkout-action@v1
33-
- uses: oxc-project/[email protected]
32+
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
33+
- uses: oxc-project/setup-rust@cd82e1efec7fef815e2c23d296756f31c7cdc03d # v1.0.0
3434
with:
3535
components: clippy rust-docs
3636
- run: cargo clippy --all-features --all-targets -- -D warnings
3737
- run: RUSTDOCFLAGS='-D warnings' cargo doc --no-deps --all-features
38-
- uses: crate-ci/typos@v1
38+
- uses: crate-ci/typos@d08e4083f112e684fb88f6babd9ae60a1f1cd84f # v1
3939
with:
4040
files: .
4141

@@ -50,8 +50,8 @@ jobs:
5050
- os: macos-14
5151
runs-on: ${{ matrix.os }}
5252
steps:
53-
- uses: taiki-e/checkout-action@v1
54-
- uses: oxc-project/[email protected]
53+
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
54+
- uses: oxc-project/setup-rust@cd82e1efec7fef815e2c23d296756f31c7cdc03d # v1.0.0
5555
with:
5656
save-cache: ${{ github.ref_name == 'main' }}
5757
cache-key: warm
@@ -66,9 +66,9 @@ jobs:
6666
name: Check Wasm
6767
runs-on: ubuntu-latest
6868
steps:
69-
- uses: taiki-e/checkout-action@v1
69+
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
7070

71-
- uses: oxc-project/[email protected]
71+
- uses: oxc-project/setup-rust@cd82e1efec7fef815e2c23d296756f31c7cdc03d # v1.0.0
7272
with:
7373
cache-key: wasm
7474
save-cache: ${{ github.ref_name == 'main' }}
@@ -82,9 +82,9 @@ jobs:
8282
name: Test wasi target
8383
runs-on: ubuntu-latest
8484
steps:
85-
- uses: taiki-e/checkout-action@v1
85+
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
8686

87-
- uses: oxc-project/[email protected]
87+
- uses: oxc-project/setup-rust@cd82e1efec7fef815e2c23d296756f31c7cdc03d # v1.0.0
8888
with:
8989
cache-key: wasi
9090
save-cache: ${{ github.ref_name == 'main' }}

.github/workflows/codecov.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout
29-
uses: taiki-e/checkout-action@v1
29+
uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
3030

3131
- uses: ./.github/actions/pnpm
3232

33-
- uses: oxc-project/[email protected]
33+
- uses: oxc-project/setup-rust@cd82e1efec7fef815e2c23d296756f31c7cdc03d # v1.0.0
3434
with:
3535
cache-key: codecov
3636
save-cache: ${{ github.ref_name == 'main' }}
@@ -40,7 +40,7 @@ jobs:
4040
- run: cargo llvm-cov --lcov --output-path lcov.info
4141

4242
- name: Upload Artifact
43-
uses: actions/upload-artifact@v4
43+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
4444
with:
4545
name: codecov
4646
path: lcov.info
@@ -56,17 +56,17 @@ jobs:
5656
steps:
5757
- name: Checkout
5858
if: env.CODECOV_TOKEN
59-
uses: taiki-e/checkout-action@v1
59+
uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
6060

6161
- name: Download coverage file
6262
if: env.CODECOV_TOKEN
63-
uses: actions/download-artifact@v4
63+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
6464
with:
6565
name: codecov
6666

6767
- name: Upload to codecov.io
6868
if: env.CODECOV_TOKEN
69-
uses: codecov/codecov-action@v5
69+
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5
7070
with:
7171
token: ${{ secrets.CODECOV_TOKEN }}
7272
fail_ci_if_error: true

.github/workflows/deny.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
name: Cargo Deny
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: taiki-e/checkout-action@v1
30+
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
3131

32-
- uses: oxc-project/[email protected]
32+
- uses: oxc-project/setup-rust@cd82e1efec7fef815e2c23d296756f31c7cdc03d # v1.0.0
3333
with:
3434
restore-cache: false
3535
tools: cargo-deny

.github/workflows/release-napi.yml

+46-27
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,14 @@ 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:
12-
DEBUG: "napi:*"
13+
DEBUG: napi:*
14+
APP_NAME: rspack-resolver
15+
OXC_LOG: debug
16+
MACOSX_DEPLOYMENT_TARGET: 10.13
17+
CC: clang
1318

1419
concurrency:
1520
group: ${{ github.workflow }}-${{ github.ref }}
@@ -23,10 +28,10 @@ jobs:
2328
version: ${{ env.version }}
2429
version_changed: ${{ steps.version.outputs.changed }}
2530
steps:
26-
- uses: taiki-e/checkout-action@v1
31+
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
2732

2833
- name: Check version changes
29-
uses: EndBug/version-check@v2
34+
uses: EndBug/version-check@36ff30f37c7deabe56a30caa043d127be658c425 # v2
3035
id: version
3136
with:
3237
static-checking: localIsNew
@@ -41,7 +46,7 @@ jobs:
4146
4247
build:
4348
needs: check
44-
if: needs.check.outputs.version_changed == 'true'
49+
# if: needs.check.outputs.version_changed == 'true'
4550
env:
4651
version: ${{ needs.check.outputs.version }}
4752
outputs:
@@ -52,41 +57,56 @@ jobs:
5257
include:
5358
- os: windows-latest
5459
target: x86_64-pc-windows-msvc
60+
build: pnpm build
5561
- os: windows-latest
5662
target: aarch64-pc-windows-msvc
63+
build: pnpm build
5764
- os: windows-latest
5865
target: i686-pc-windows-msvc
66+
architecture: x86
67+
build: pnpm build
5968
- os: ubuntu-latest
6069
target: x86_64-unknown-linux-gnu
70+
build: pnpm build --use-napi-cross
6171
- os: ubuntu-latest
6272
target: x86_64-unknown-linux-musl
73+
build: pnpm build -x
6374
- os: ubuntu-latest
6475
target: aarch64-unknown-linux-gnu
76+
build: pnpm build --use-napi-cross
6577
- os: ubuntu-latest
6678
target: aarch64-unknown-linux-musl
79+
build: pnpm build -x
6780
- os: ubuntu-latest
6881
target: armv7-unknown-linux-gnueabihf
82+
build: pnpm build --use-napi-cross
6983
- os: ubuntu-latest
7084
target: armv7-unknown-linux-musleabihf
71-
- os: ubuntu-latest
72-
target: riscv64gc-unknown-linux-gnu
85+
build: pnpm build -x
7386
- os: ubuntu-latest
7487
target: powerpc64le-unknown-linux-gnu
88+
build: pnpm build --use-napi-cross
7589
- os: ubuntu-latest
7690
target: s390x-unknown-linux-gnu
91+
build: export CFLAGS="-fuse-ld=lld" && pnpm build --use-napi-cross
7792
- os: macos-latest
7893
target: x86_64-apple-darwin
94+
build: pnpm build
7995
- os: macos-latest
8096
target: aarch64-apple-darwin
97+
build: pnpm build
8198
- os: ubuntu-latest
8299
target: wasm32-wasip1-threads
100+
build: pnpm build
83101

84102
name: Package ${{ matrix.target }}
85103
runs-on: ${{ matrix.os }}
86104
steps:
87-
- uses: taiki-e/checkout-action@v1
105+
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
88106

89107
- uses: ./.github/actions/pnpm
108+
with:
109+
architecture: ${{ matrix.architecture }}
90110

91111
- run: rustup target add ${{ matrix.target }}
92112

@@ -95,46 +115,43 @@ jobs:
95115
with:
96116
version: 0.13.0
97117

98-
- name: Build with zig cross
118+
- name: Install cargo-zigbuild
119+
uses: taiki-e/install-action@5651179950649c44da31d346537e20c0534f0f25 # v2
99120
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') }}
104121
env:
105-
CC: clang # for mimalloc
106-
run: pnpm build --use-napi-cross --target ${{ matrix.target }}
122+
GITHUB_TOKEN: ${{ github.token }}
123+
with:
124+
tool: cargo-zigbuild
107125

108126
- name: Build
109-
if: ${{ !contains(matrix.target, 'gnu') && !contains(matrix.target, 'musl') }}
110-
env:
111-
CC: clang # for mimalloc
112-
run: pnpm build --target ${{ matrix.target }}
127+
run: ${{ matrix.build }} --target ${{ matrix.target }}
128+
shell: bash
113129

114130
- name: Upload artifacts
115-
uses: actions/upload-artifact@v4
131+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
116132
with:
117133
name: bindings-${{ matrix.target }}
118134
path: |
119135
napi/*.node
120136
napi/*.wasm
137+
if-no-files-found: error
121138

122139
build-freebsd:
123140
needs: check
124-
if: needs.check.outputs.version_changed == 'true'
141+
# if: needs.check.outputs.version_changed == 'true'
125142
name: Build FreeBSD
126143
runs-on: ubuntu-latest
127144
steps:
128-
- uses: taiki-e/checkout-action@v1
145+
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
129146
- name: Build
130147
id: build
131-
uses: cross-platform-actions/[email protected]
148+
uses: cross-platform-actions/action@fe0167d8082ac584754ef3ffb567fded22642c7d # v0.27.0
132149
env:
133150
DEBUG: napi:*
134151
RUSTUP_IO_THREADS: 1
135152
with:
136153
operating_system: freebsd
137-
version: "14.0"
154+
version: "14.2"
138155
memory: 8G
139156
cpu_count: 3
140157
environment_variables: "DEBUG RUSTUP_IO_THREADS"
@@ -159,7 +176,7 @@ jobs:
159176
rm -rf node_modules
160177
rm -rf target
161178
- name: Upload artifact
162-
uses: actions/upload-artifact@v4
179+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
163180
with:
164181
name: bindings-freebsd
165182
path: napi/*.node
@@ -171,18 +188,20 @@ jobs:
171188
permissions:
172189
id-token: write # for `npm publish --provenance`
173190
needs:
191+
- check
174192
- build
175193
- build-freebsd
194+
if: needs.check.outputs.version_changed == 'true'
176195
env:
177196
COREPACK_INTEGRITY_KEYS: 0
178197
steps:
179-
- uses: taiki-e/checkout-action@v1
198+
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1
180199

181200
- name: Install pnpm
182201
run: corepack enable
183202

184203
- name: Setup Node.js
185-
uses: actions/setup-node@v4
204+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
186205
with:
187206
node-version-file: .node-version
188207
cache: pnpm
@@ -191,7 +210,7 @@ jobs:
191210
run: pnpm install --frozen-lockfile
192211

193212
- name: Download Artifacts
194-
uses: actions/download-artifact@v4
213+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
195214
with:
196215
path: artifacts
197216

0 commit comments

Comments
 (0)