Skip to content
Snippets Groups Projects
Commit e8b10391 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

switch off developer checks for oldstable

parent 8d37b375
No related branches found
No related tags found
1 merge request!2515Debian/oldstable docker container for packaging (#942)
......@@ -11,6 +11,7 @@ native_Debian:
before_script: &native_before
- pwd
- export CC=gcc; export CXX=g++
- export CHECK_FLAGS="-DZERO_TOLERANCE=ON -DDEVELOPER_CHECKS=ON"
- export MPLBACKEND=Agg
# avoid using the default Debian Qt framework
- QTCMAKE="/usr/local/Qt6/6.2.3/gcc_64/lib/cmake"
......@@ -21,7 +22,7 @@ native_Debian:
- mkdir build
- cd build
# NOTE: CMake's Ninja generator should not be used with CMake < 3.26 due to internal bugs.
- time cmake .. -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_PREFIX_PATH="$QTCMAKE" -DZERO_TOLERANCE=ON -DDEVELOPER_CHECKS=ON
- time cmake .. -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_PREFIX_PATH="$QTCMAKE" $CHECK_FLAGS
- time make -j16
- time xvfb-run -a ctest -j16 --output-on-failure
- time make package_source
......@@ -49,6 +50,7 @@ debian_oldstable_py38:
- pyenv global 3.8
stage: build
script: &docker_build
- export CHECK_FLAGS=""
- ORIGINAL_DIR=$(pwd)
- export CC=gcc; export CXX=g++
- export MPLBACKEND=Agg
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment