From 654fa83fd704aea5ab5ff86ca91f2aa324d99257 Mon Sep 17 00:00:00 2001 From: Leonardo Comandini Date: Sat, 20 Apr 2024 15:51:59 +0200 Subject: [PATCH] ci: cargo update cc --- contrib/test.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/contrib/test.sh b/contrib/test.sh index c1098029..5b9aabf3 100755 --- a/contrib/test.sh +++ b/contrib/test.sh @@ -8,6 +8,7 @@ if cargo --version | grep "1\.56"; then cargo update -p once_cell --precise 1.13.1 cargo update -p which --precise 4.4.0 cargo update -p byteorder --precise 1.4.3 + cargo update -p cc --precise 1.0.94 fi if [ "$DO_FEATURE_MATRIX" = true ] @@ -53,6 +54,9 @@ if [ "$DO_FUZZ" = true ] then ( cd fuzz + if cargo --version | grep "1\.56"; then + cargo update -p cc --precise 1.0.94 + fi cargo test --verbose ./travis-fuzz.sh )