Skip to content

Commit

Permalink
make timeout for tests in the pipeline up to 4 min
Browse files Browse the repository at this point in the history
  • Loading branch information
daanx committed Dec 17, 2024
1 parent ac52b69 commit df593a3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
solution: $(BuildType)/libmimalloc.sln
configuration: '$(MSBuildConfiguration)'
msbuildArguments: -m
- script: ctest --verbose --timeout 180 -C $(MSBuildConfiguration)
- script: ctest --verbose --timeout 240 -C $(MSBuildConfiguration)
workingDirectory: $(BuildType)
displayName: CTest
#- script: $(BuildType)\$(BuildType)\mimalloc-test-stress
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
cmakeArgs: .. $(cmakeExtraArgs)
- script: make -j$(nproc) -C $(BuildType)
displayName: Make
- script: ctest --verbose --timeout 180
- script: ctest --verbose --timeout 240
workingDirectory: $(BuildType)
displayName: CTest
env:
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
cmakeArgs: .. $(cmakeExtraArgs)
- script: make -j$(sysctl -n hw.ncpu) -C $(BuildType)
displayName: Make
- script: ctest --verbose --timeout 180
- script: ctest --verbose --timeout 240
workingDirectory: $(BuildType)
displayName: CTest
# - upload: $(Build.SourcesDirectory)/$(BuildType)
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
solution: $(BuildType)/libmimalloc.sln
configuration: '$(MSBuildConfiguration)'
msbuildArguments: -m
- script: ctest --verbose --timeout 180 -C $(MSBuildConfiguration)
- script: ctest --verbose --timeout 240 -C $(MSBuildConfiguration)
workingDirectory: $(BuildType)
displayName: CTest

Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:
cmakeArgs: .. $(cmakeExtraArgs)
- script: make -j$(nproc) -C $(BuildType)
displayName: Make
- script: ctest --verbose --timeout 180
- script: ctest --verbose --timeout 240
workingDirectory: $(BuildType)
displayName: CTest

Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
cmakeArgs: .. $(cmakeExtraArgs)
- script: make -j$(nproc) -C $(BuildType)
displayName: Make
- script: ctest --verbose --timeout 180
- script: ctest --verbose --timeout 240
workingDirectory: $(BuildType)
displayName: CTest

Expand All @@ -302,6 +302,6 @@ jobs:
cmakeArgs: .. $(cmakeExtraArgs)
- script: make -j$(sysctl -n hw.ncpu) -C $(BuildType)
displayName: Make
- script: ctest --verbose --timeout 180
- script: ctest --verbose --timeout 240
workingDirectory: $(BuildType)
displayName: CTest

0 comments on commit df593a3

Please sign in to comment.