From f08e9b5355914e3d05e1cc4ee1694ff09a9f33d8 Mon Sep 17 00:00:00 2001 From: Fabrice Reix Date: Fri, 11 Mar 2022 09:59:43 +0100 Subject: [PATCH] Skip Tests on Archlinux current curl issue https://github.com/curl/curl/issues/8559 --- ci/build_and_test.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ci/build_and_test.sh b/ci/build_and_test.sh index bef765eb6..5161ecd46 100755 --- a/ci/build_and_test.sh +++ b/ci/build_and_test.sh @@ -8,6 +8,12 @@ cargo build --verbose ci/test_prerequisites.sh +# current bug with curl to be fixed +# https://github.com/curl/curl/issues/8559 +if test -f /etc/arch-release; then + exit 0 +fi + echo "----- unit tests -----" cargo test --features strict --tests