Skip to content

Commit c9643c8

Browse files
committed
Disable FreeBSD 14 CI temporarily
Signed-off-by: Yuki Okushi <[email protected]>
1 parent 30a7a9f commit c9643c8

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

.cirrus.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ task:
2929
task:
3030
name: nightly x86_64-unknown-freebsd-14
3131
freebsd_instance:
32-
image: freebsd-14-0-current-amd64-v20230330
32+
# FIXME: FreeBSD 14 CI fails due to pkg installation.
33+
# Use 14 again once a new image is available on Cirrus CI.
34+
image_family: freebsd-13-2
3335
setup_script:
3436
- pkg install -y libnghttp2 curl
3537
- curl https://sh.rustup.rs -sSf --output rustup.sh

ci/build.sh

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,6 @@ i686-linux-android \
102102
i686-unknown-freebsd \
103103
i686-unknown-linux-gnu \
104104
i686-unknown-linux-musl \
105-
mips-unknown-linux-gnu \
106-
mips-unknown-linux-musl \
107-
mips64-unknown-linux-gnuabi64 \
108-
mips64el-unknown-linux-gnuabi64 \
109-
mipsel-unknown-linux-gnu \
110-
mipsel-unknown-linux-musl \
111105
powerpc-unknown-linux-gnu \
112106
powerpc64-unknown-linux-gnu \
113107
powerpc64le-unknown-linux-gnu \
@@ -118,6 +112,14 @@ x86_64-unknown-linux-musl \
118112
x86_64-unknown-netbsd \
119113
"
120114

115+
# FIXME: builds of MIPS targets are currently broken on nightly.
116+
# mips-unknown-linux-gnu \
117+
# mips-unknown-linux-musl \
118+
# mips64-unknown-linux-gnuabi64 \
119+
# mips64el-unknown-linux-gnuabi64 \
120+
# mipsel-unknown-linux-gnu \
121+
# mipsel-unknown-linux-musl \
122+
121123
RUST_GT_1_13_LINUX_TARGETS="\
122124
arm-unknown-linux-musleabi \
123125
arm-unknown-linux-musleabihf \

ci/install-rust.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ else
1212
# https://github.com/rust-lang/rust/issues/103673 contains related information.
1313
case "$TARGET" in
1414
*android*) toolchain=nightly-2022-10-09;;
15+
# FIXME: Unpin once mips' components are available on nightly.
16+
# https://rust-lang.github.io/rustup-components-history/mips-unknown-linux-gnu.html
17+
*mips*) toolchain=nightly-2023-07-04;;
1518
*) toolchain=nightly;;
1619
esac
1720
fi

0 commit comments

Comments
 (0)