Skip to content

Commit e8a49a2

Browse files
authored
Disable FreeBSD CI for now. (bytecodealliance#530) (bytecodealliance#600)
FreeBSD CI is currently broken with this error ``` [4/4] Extracting curl-7.88.1: .......... done curl https://sh.rustup.rs -sSf --output rustup.sh ld-elf.so.1: /usr/local/lib/libcurl.so.4: Undefined symbol "nghttp2_option_set_no_rfc9113_leading_and_trailing_ws_validation" ``` From some quick searches I found [this bug] which looks related, but I didn't see anything in the discussion which would let us work around the problem. [this bug]: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=269253
1 parent dd0cc08 commit e8a49a2

File tree

1 file changed

+19
-13
lines changed

1 file changed

+19
-13
lines changed

.cirrus.yml

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
# Implementation derived from `.cirrus.yml` in Rust's libc bindings
22
# at revision 7f4774e76bd5cb9ccb7140d71ef9be9c16009cdf.
33

4-
task:
5-
name: stable x86_64-unknown-freebsd-13
6-
freebsd_instance:
7-
image_family: freebsd-13-1
8-
setup_script:
9-
- pkg install -y curl
10-
- curl https://sh.rustup.rs -sSf --output rustup.sh
11-
- sh rustup.sh --default-toolchain stable -y --profile=minimal
12-
- . $HOME/.cargo/env
13-
- rustup default stable
14-
test_script:
15-
- . $HOME/.cargo/env
16-
- cargo test --workspace --features=all-apis
4+
# Disable FreeBSD testing for now, as we currently hit this error:
5+
#
6+
# [4/4] Extracting curl-7.88.1: .......... done
7+
# curl https://sh.rustup.rs -sSf --output rustup.sh
8+
# ld-elf.so.1: /usr/local/lib/libcurl.so.4: Undefined symbol "nghttp2_option_set_no_rfc9113_leading_and_trailing_ws_validation"
9+
10+
#task:
11+
# name: stable x86_64-unknown-freebsd-13
12+
# freebsd_instance:
13+
# image_family: freebsd-13-1
14+
# setup_script:
15+
# - pkg install -y curl
16+
# - curl https://sh.rustup.rs -sSf --output rustup.sh
17+
# - sh rustup.sh --default-toolchain stable -y --profile=minimal
18+
# - . $HOME/.cargo/env
19+
# - rustup default stable
20+
# test_script:
21+
# - . $HOME/.cargo/env
22+
# - cargo test --workspace --features=all-apis

0 commit comments

Comments
 (0)