Skip to content
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions scripts/gitlab/build_and_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ echo "DO_INTEGRATION_TESTS=${DO_INTEGRATION_TESTS}"
echo "EXTRA_BUILD_OPTIONS=${EXTRA_BUILD_OPTIONS}"
echo "EXTRA_CMAKE_OPTIONS=${EXTRA_CMAKE_OPTIONS}"
echo "HOST_CONFIG=${HOST_CONFIG}"
echo "BUILD_ROOT=${BUILD_ROOT}"

# EXTRA_CMAKE_OPTIONS needs quotes wrapped around it, since it may contain spaces, and we want them all to be a part of
# one large string. (e.g. "-DSERAC_ENABLE_CODEVELOP=ON -DENABLE_DOCS=OFF")
Expand All @@ -14,6 +15,7 @@ echo "HOST_CONFIG=${HOST_CONFIG}"
python3 scripts/llnl/build_src.py -v \
--host-config=${HOST_CONFIG} \
--extra-cmake-options="${EXTRA_CMAKE_OPTIONS}" \
--directory=${BUILD_ROOT} \
${EXTRA_BUILD_OPTIONS}
if [ $? -ne 0 ]; then { echo "ERROR: build_src.py failed." ; exit 1; } fi

Expand Down