Skip to content

Commit 14e1e02

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

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/release-napi.yml

+7-3
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 }}
@@ -84,6 +88,7 @@ jobs:
8488
setup: |
8589
sudo apt-get update
8690
sudo apt-get install gcc-riscv64-linux-gnu -y
91+
export CFLAGS="-fuse-ld=lld"
8792
echo "CXX=riscv64-linux-gnu-gcc" >> $GITHUB_ENV
8893
build: pnpm build --use-napi-cross
8994
- os: ubuntu-latest
@@ -94,6 +99,7 @@ jobs:
9499
setup: |
95100
sudo apt-get update
96101
sudo apt-get install gcc-s390x-linux-gnu -y
102+
export CFLAGS="-fuse-ld=lld"
97103
echo "CXX=s390x-linux-gnu-gcc" >> $GITHUB_ENV
98104
build: pnpm build
99105
- os: macos-latest
@@ -138,8 +144,6 @@ jobs:
138144
- name: Build
139145
run: ${{ matrix.build }} --target ${{ matrix.target }}
140146
shell: bash
141-
env:
142-
CC: ${{ matrix.target != 'riscv64gc-unknown-linux-gnu' && matrix.target != 's390x-unknown-linux-gnu' && 'clang' || '' }}
143147

144148
- name: Upload artifacts
145149
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4

0 commit comments

Comments
 (0)