Skip to content
Merged
Changes from all 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
4 changes: 3 additions & 1 deletion buildconfig/Jenkins/Conda/conda-buildscript
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,8 @@ fi
rm -f -- *.dmg *.rpm *.deb *.tar.gz *.tar.xz *.exe
# Remove test logs from previous builds
rm -rf $BUILD_DIR/test_logs
# Remake the directory for the test logs.
mkdir $BUILD_DIR/test_logs

# Set locale to avoid problems building the docs
# See https://unix.stackexchange.com/questions/87745/what-does-lc-all-c-do
Expand All @@ -149,7 +151,7 @@ if [[ $ENABLE_DOCS == true ]]; then
fi

# Run the script that handles the build
$SCRIPT_DIR/build $WORKSPACE $CMAKE_PRESET $ENABLE_DOCS $ENABLE_DEV_DOCS $ENABLE_BUILD_CODE $ENABLE_UNIT_TESTS $ENABLE_SYSTEM_TESTS $ENABLE_DOC_TESTS $ENABLE_COVERITY "$EXTRA_CMAKE_FLAGS" $BUILD_THREADS
$SCRIPT_DIR/build $WORKSPACE $CMAKE_PRESET $ENABLE_DOCS $ENABLE_DEV_DOCS $ENABLE_BUILD_CODE $ENABLE_UNIT_TESTS $ENABLE_SYSTEM_TESTS $ENABLE_DOC_TESTS $ENABLE_COVERITY "$EXTRA_CMAKE_FLAGS" $BUILD_THREADS | tee $BUILD_DIR/test_logs/build_$OSTYPE.log

# Run unit and system tests
$SCRIPT_DIR/run-tests $WORKSPACE $ENABLE_SYSTEM_TESTS $ENABLE_UNIT_TESTS $ENABLE_DOCS $ENABLE_DOC_TESTS $BUILD_THREADS
Expand Down
Loading