From 9d7de82b8e51fc43631e193343ebb779ddb6bb23 Mon Sep 17 00:00:00 2001 From: Jose Quintana Date: Fri, 14 Apr 2023 15:38:54 +0200 Subject: [PATCH] fix: when installing rust on freebsd via its script error: 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" updates: freebsd 13.1 update --- .cirrus.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 11a7c0b..3bf2bf7 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -1,5 +1,5 @@ freebsd_instance: - image: freebsd-12-2-release-amd64 + image: freebsd-13-1-release-amd64 # Test FreeBSD in a full VM on cirrus-ci.com # The binary will be also built in 32-bit mode, but will execute on a @@ -19,7 +19,7 @@ task: env: BINARY_ARCH: i686 setup_script: - - pkg install -y bash curl + - pkg install -y bash - curl https://sh.rustup.rs -sSf --output rustup.sh - sh rustup.sh -y --profile minimal --default-toolchain stable - . $HOME/.cargo/env @@ -54,7 +54,7 @@ task: env: BINARY_ARCH: i686 setup_script: - - pkg install -y bash curl jq + - pkg install -y bash jq - curl https://sh.rustup.rs -sSf --output rustup.sh - sh rustup.sh -y --profile minimal --default-toolchain stable - . $HOME/.cargo/env -- libgit2 1.7.2