Skip to content

Commit

Permalink
CI: Disable Ubuntu-18.04 clang (verilator#2963)
Browse files Browse the repository at this point in the history
  • Loading branch information
wsnyder committed May 16, 2021
1 parent 31779b8 commit 706842d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ci/ci-script.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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-
Expand Down

0 comments on commit 706842d

Please sign in to comment.