Skip to content

Commit

Permalink
[ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
S1eGa committed Nov 23, 2023
1 parent 931b59d commit fb184c3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:
branches: [main, utbot-main]
push:
branches: [main, utbot-main]
branches: [ci]

# Defaults for building KLEE
env:
Expand Down
5 changes: 4 additions & 1 deletion scripts/build/p-bitwuzla.inc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ build_bitwuzla() {
local CC=""
local CXX=""

args=(--build-dir "${BITWUZLA_BUILD_PATH}" --prefix "${BITWUZLA_INSTALL_PATH}" --no-assertions --static --no-unit-testing release)
args=(--build-dir "${BITWUZLA_BUILD_PATH}" --prefix "${BITWUZLA_INSTALL_PATH}" --static --no-unit-testing)

if [[ -n "${SANITIZER_SUFFIX:-}" ]]; then
if [[ "${SANITIZER_BUILD:-}" == "address" ]]; then
Expand All @@ -33,6 +33,9 @@ build_bitwuzla() {
if [[ "${SANITIZER_BUILD:-}" == "undefined" ]]; then
args+=("--ubsan")
fi
args+=("--assertions" "debug")
else
args+=("--no-assertions" "release")
fi

./configure.py "${args[@]}"
Expand Down
1 change: 1 addition & 0 deletions test/Feature/const_array_opt1.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// REQUIRES: not-msan
// REQUIRES: not-ubsan
// REQUIRES: not-bitwuzla
// Disabling msan and ubsan because it times out on CI
// RUN: %clang %s -emit-llvm %O0opt -c -o %t.bc
// RUN: rm -rf %t.klee-out
Expand Down

0 comments on commit fb184c3

Please sign in to comment.