Skip to content

Commit 706b588

Browse files
committed
fix(ci): attempt to fix CI
1 parent 1d2bf90 commit 706b588

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

.cargo/config.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[target.x86_64-pc-windows-msvc]
22
rustflags = ["-C", "target-feature=+crt-static"]
33

4-
[target.i686-pc-windows-msvc]
5-
rustflags = ["-C", "target-feature=+crt-static"]
4+
# [target.i686-pc-windows-msvc]
5+
# rustflags = ["-C", "target-feature=+crt-static"]
66

7-
[target.aarch64-unknown-linux-gnu]
8-
rustflags = ["-C", "link-arg=-s"]
9-
linker = "aarch64-linux-gnu-gcc"
10-
ar = "aarch64-linux-gnu-ar"
7+
# [target.aarch64-unknown-linux-gnu]
8+
# rustflags = ["-C", "link-arg=-s"]
9+
# linker = "aarch64-linux-gnu-gcc"
10+
# ar = "aarch64-linux-gnu-ar"
1111

12-
[target.armv7-unknown-linux-gnueabihf]
13-
linker = "arm-linux-gnueabihf-gcc"
14-
ar = "arm-linux-gnueabihf-ar"
12+
# [target.armv7-unknown-linux-gnueabihf]
13+
# linker = "arm-linux-gnueabihf-gcc"
14+
# ar = "arm-linux-gnueabihf-ar"

.github/workflows/node.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ jobs:
8484
tar -xf wasi-sdk-32.0-x86_64-linux.tar.gz
8585
build: |
8686
export WASI_SDK_PATH="${GITHUB_WORKSPACE}/wasi-sdk-32.0"
87-
export CC="${WASI_SDK_PATH}/bin/clang"
88-
export AR="${WASI_SDK_PATH}/bin/llvm-ar"
87+
export CC_wasm32_wasip1_threads="${WASI_SDK_PATH}/bin/clang"
88+
export AR_wasm32_wasip1_threads="${WASI_SDK_PATH}/bin/llvm-ar"
8989
export CMAKE_BUILD_PARALLEL_LEVEL=2
9090
mise run //crates/node:build:wasm
9191
name: stable - ${{ matrix.settings.target }} - node@22

.github/workflows/python.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ jobs:
4848
target: aarch64
4949
- runner: ubuntu-22.04
5050
target: armv7
51-
- runner: ubuntu-22.04
52-
target: s390x
5351
- runner: ubuntu-22.04
5452
target: ppc64le
5553
steps:

0 commit comments

Comments
 (0)