From 4a867ffd98b7bcf47ac395a0edf25ddd3acfc651 Mon Sep 17 00:00:00 2001 From: daanx Date: Mon, 17 Apr 2023 12:24:01 -0700 Subject: [PATCH] disable tsan as it times out on the azure pipeline --- azure-pipelines.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c0725e3a..27dfa3e1 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -108,11 +108,12 @@ jobs: CXX: clang++ BuildType: debug-ubsan-clang cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Debug -DMI_DEBUG_FULL=ON -DMI_DEBUG_UBSAN=ON - Debug TSAN Clang++: - CC: clang - CXX: clang++ - BuildType: debug-tsan-clang-cxx - cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Debug -DMI_USE_CXX=ON -DMI_DEBUG_TSAN=ON + # Disable for now as it times out on the azure build machines + # Debug TSAN Clang++: + # CC: clang + # CXX: clang++ + # BuildType: debug-tsan-clang-cxx + # cmakeExtraArgs: -DCMAKE_BUILD_TYPE=Debug -DMI_USE_CXX=ON -DMI_DEBUG_TSAN=ON steps: - task: CMake@1 @@ -121,7 +122,7 @@ jobs: cmakeArgs: .. $(cmakeExtraArgs) - script: make -j$(nproc) -C $(BuildType) displayName: Make - - script: ctest --verbose --timeout 600 + - script: ctest --verbose --timeout 180 workingDirectory: $(BuildType) displayName: CTest # - upload: $(Build.SourcesDirectory)/$(BuildType)