We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee77152 commit 81b9dcdCopy full SHA for 81b9dcd
ci/test.sh
@@ -48,6 +48,10 @@ main() {
48
# don't use xargo: should have native support just from rustc
49
rustup toolchain add nightly
50
CROSS+=("+nightly")
51
+ elif (( "${TARGET}" != "riscv64gc-unknown-linux-gnu" )); then
52
+ # FIXME: riscv64gc-unknown-linux-gnu is broken on rustc 1.75, see https://github.com/cross-rs/cross/issues/1423
53
+ rustup toolchain add 1.74
54
+ CROSS+=("+1.74")
55
fi
56
57
if (( ${STD:-0} )); then
@@ -89,6 +93,7 @@ main() {
89
93
popd
90
94
91
95
rm -rf "${td}"
96
+ # thumb targets are tested in later steps
92
97
elif [[ "${TARGET}" != thumb* ]]; then
98
td=$(mkcargotemp -d)
99
0 commit comments