variables: cmakeJulia: '-DZ3_BUILD_JULIA_BINDINGS=True' cmakeJava: '-DZ3_BUILD_JAVA_BINDINGS=True' cmakeNet: '-DZ3_BUILD_DOTNET_BINDINGS=True' cmakePy: '-DZ3_BUILD_PYTHON_BINDINGS=True' cmakeStdArgs: '-DZ3_BUILD_DOTNET_BINDINGS=True -DZ3_BUILD_JAVA_BINDINGS=True -DZ3_BUILD_PYTHON_BINDINGS=True -G "Ninja" ../' asanEnv: 'CXXFLAGS="${CXXFLAGS} -fsanitize=address -fno-omit-frame-pointer" CFLAGS="${CFLAGS} -fsanitize=address -fno-omit-frame-pointer"' ubsanEnv: 'CXXFLAGS="${CXXFLAGS} -fsanitize=undefined" CFLAGS="${CFLAGS} -fsanitize=undefined"' msanEnv: 'CC=clang LDFLAGS="-L../libcxx/libcxx_msan/lib -lc++abi -Wl,-rpath=../libcxx/libcxx_msan/lib" CXX=clang++ CXXFLAGS="${CXXFLAGS} -stdlib=libc++ -fsanitize-memory-track-origins -fsanitize=memory -fPIE -fno-omit-frame-pointer -g -O2" CFLAGS="${CFLAGS} -stdlib=libc -fsanitize=memory -fsanitize-memory-track-origins -fno-omit-frame-pointer -g -O2"' # TBD: # test python bindings # build documentation # Asan, ubsan, msan # Disabled pending clang dependencies for std::unordered_map jobs: - job: "LinuxPythonDebug" displayName: "Ubuntu build - python make - debug" timeoutInMinutes: 90 pool: vmImage: "ubuntu-latest" strategy: matrix: MT: cmdLine: 'python scripts/mk_make.py -d --java --dotnet' runRegressions: 'True' ST: cmdLine: './configure --single-threaded' runRegressions: 'False' steps: - script: $(cmdLine) - script: | set -e cd build make -j3 make -j3 examples make -j3 test-z3 cd .. - template: scripts/test-z3.yml - ${{if eq(variables['runRegressions'], 'True')}}: - template: scripts/test-regressions.yml - job: "ManylinuxPythonBuildAmd64" displayName: "Python bindings (manylinux Centos AMD64) build" timeoutInMinutes: 90 pool: vmImage: "ubuntu-latest" container: "quay.io/pypa/manylinux2014_x86_64:latest" steps: - script: "/opt/python/cp38-cp38/bin/python -m venv $PWD/env" - script: 'echo "##vso[task.prependpath]$PWD/env/bin"' - script: "pip install build git+https://github.com/rhelmot/auditwheel" - script: "cd src/api/python && python -m build && AUDITWHEEL_PLAT= auditwheel repair --best-plat dist/*.whl && cd ../../.." - script: "pip install ./src/api/python/wheelhouse/*.whl && python -