mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +00:00
Testing a new configuration
This commit is contained in:
parent
45c17dc256
commit
2bcd3280fa
|
@ -48,18 +48,23 @@ jobs:
|
|||
# debugClang:
|
||||
# cmdLine: 'CC=clang CXX=clang++ cmake $(cmakeStdArgs)'
|
||||
# runUnitTest: 'True'
|
||||
# runExample: 'True'
|
||||
# releaseClang:
|
||||
# cmdLine: 'CC=clang CXX=clang++ cmake -DCMAKE_BUILD_TYPE=Release $(cmakeStdArgs)'
|
||||
# runUnitTest: 'True'
|
||||
# runExample: 'True'
|
||||
# debugGcc:
|
||||
# cmdLine: 'CC=gcc CXX=g++ cmake $(cmakeStdArgs)'
|
||||
# runUnitTest: 'True'
|
||||
# runExample: 'True'
|
||||
# releaseSTGcc:
|
||||
# cmdLine: 'CC=gcc CXX=g++ cmake -DCMAKE_BUILD_TYPE=Release -DSINGLE_THREADED=ON $(cmakeStdArgs)'
|
||||
# runUnitTest: 'True'
|
||||
# runExample: 'True'
|
||||
msanClang:
|
||||
cmdLine: '$(asanEnv) cmake $(cmakeStdArgs)'
|
||||
runUnitTest: 'False' # asanEnv doesn't seem to get picked up by unit tests
|
||||
cmdLine: '$(msanEnv) cmake $(cmakeStdArgs)'
|
||||
runUnitTest: 'True'
|
||||
runExample: 'False' # Examples don't seem to build with MSAN
|
||||
# gccX86:
|
||||
# cmdLine: 'CXXFLAGS="${CXXFLAGS} -m32" CFLAGS="${CFLAGS} -m32" CC=gcc-5 CXX=g++-5 cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo $(cmakeStdArgs)'
|
||||
# runUnitTest: 'True'
|
||||
|
@ -82,7 +87,9 @@ jobs:
|
|||
./test-z3 -a
|
||||
cd ..
|
||||
condition: eq(variables['runUnitTest'], 'True')
|
||||
# - template: scripts/test-examples-cmake.yml
|
||||
- template: |
|
||||
scripts/test-examples-cmake.yml
|
||||
condition: eq(variables['runExample'], 'True')
|
||||
# - template: scripts/test-jupyter.yml
|
||||
# - template: scripts/test-java-cmake.yml
|
||||
- template: scripts/test-regressions.yml
|
||||
|
|
Loading…
Reference in a new issue