From da7ab15f80c06373e03267e11497da71a028a3aa Mon Sep 17 00:00:00 2001 From: Ivan Valdes Date: Sat, 9 Mar 2024 15:07:25 -0800 Subject: [PATCH] tests: temporary disable coverage redisign Go experiment Go v1.22 has an error generating the coverage output. Disable it temporarily so GitHub workflows can run in the meantime. Signed-off-by: Ivan Valdes --- scripts/codecov_upload.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/codecov_upload.sh b/scripts/codecov_upload.sh index b516b3bf1..88fe8a394 100755 --- a/scripts/codecov_upload.sh +++ b/scripts/codecov_upload.sh @@ -8,7 +8,7 @@ set -o pipefail LOG_FILE=${1:-test-coverage.log} # We collect the coverage -COVERDIR=covdir PASSES='build cov' ./scripts/test.sh 2>&1 | tee "${LOG_FILE}" +GOEXPERIMENT=nocoverageredesign COVERDIR=covdir PASSES='build cov' ./scripts/test.sh 2>&1 | tee "${LOG_FILE}" test_success="$?" # We try to upload whatever we have: