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 24139ef
Show file tree
Hide file tree
Showing 2 changed files with 5 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

0 comments on commit 24139ef

Please sign in to comment.