From 17aae99931943b274f868903024d5f83bba42c89 Mon Sep 17 00:00:00 2001 From: Nikolaj Bjorner Date: Tue, 28 Oct 2025 15:13:30 -0700 Subject: [PATCH] update centos version Signed-off-by: Nikolaj Bjorner --- azure-pipelines.yml | 307 -------------------------------------------- 1 file changed, 307 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index d31edc45f..000000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,307 +0,0 @@ - -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/manylinux_2_34_x86_64:latest" - condition: eq(1,1) - 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 -