File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -159,10 +159,7 @@ jobs:
159
159
# wasm32-wasi,
160
160
sparc64-unknown-linux-gnu,
161
161
wasm32-unknown-emscripten,
162
- # FIXME: Started to fail since 2022-10-10:
163
- # error: linking with `x86_64-linux-android-gcc` failed: exit status: 1
164
- # ld: error: cannot find -lunwind
165
- # x86_64-linux-android,
162
+ x86_64-linux-android,
166
163
x86_64-unknown-linux-gnux32,
167
164
x86_64-unknown-linux-musl,
168
165
# FIXME: It seems some items in `src/unix/mod.rs`
Original file line number Diff line number Diff line change @@ -8,7 +8,13 @@ toolchain=
8
8
if [ -n " $TOOLCHAIN " ]; then
9
9
toolchain=$TOOLCHAIN
10
10
else
11
- toolchain=nightly
11
+ # Pin the nightly version as newer nightly versions break CI,
12
+ # https://github.com/rust-lang/rust/issues/103673 contains related information.
13
+ if [ " $TARGET " = " x86_64-linux-android" ]; then
14
+ toolchain=nightly-2022-10-09
15
+ else
16
+ toolchain=nightly
17
+ fi
12
18
fi
13
19
if [ " $OS " = " windows" ]; then
14
20
: " ${TARGET?The TARGET environment variable must be set.} "
You can’t perform that action at this time.
0 commit comments