From 706842d093b4e64938bd1e223c11510858f1282b Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Sun, 16 May 2021 15:11:25 -0400 Subject: [PATCH] CI: Disable Ubuntu-18.04 clang (#2963) --- ci/ci-script.bash | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ci/ci-script.bash b/ci/ci-script.bash index 498531eed..54eeb1756 100755 --- a/ci/ci-script.bash +++ b/ci/ci-script.bash @@ -85,16 +85,24 @@ elif [ "$CI_BUILD_STAGE_NAME" = "test" ]; then # Run the specified test case $TESTS in dist-vlt-0) + if [[ "$CI_RUNS_ON" != "ubuntu-18.04" || "$CXX" != "clang++" ]]; then # issue #2963 "$MAKE" -C test_regress SCENARIOS="--dist --vlt $sanitize" DRIVER_HASHSET=--hashset=0/2 + fi ;; dist-vlt-1) + if [[ "$CI_RUNS_ON" != "ubuntu-18.04" || "$CXX" != "clang++" ]]; then # issue #2963 "$MAKE" -C test_regress SCENARIOS="--dist --vlt $sanitize" DRIVER_HASHSET=--hashset=1/2 + fi ;; vltmt-0) + if [[ "$CI_RUNS_ON" != "ubuntu-18.04" || "$CXX" != "clang++" ]]; then # issue #2963 "$MAKE" -C test_regress SCENARIOS=--vltmt DRIVER_HASHSET=--hashset=0/2 + fi ;; vltmt-1) + if [[ "$CI_RUNS_ON" != "ubuntu-18.04" || "$CXX" != "clang++" ]]; then # issue #2963 "$MAKE" -C test_regress SCENARIOS=--vltmt DRIVER_HASHSET=--hashset=1/2 + fi ;; coverage-all) nodist/code_coverage --stages 1-