We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e9fdb84 + a6f3b3b commit cde4cb8Copy full SHA for cde4cb8
.github/workflows/weekly.yml
@@ -10,6 +10,7 @@ on:
10
env:
11
BUILD_DIR : "${{github.workspace}}/build"
12
INSTL_DIR : "${{github.workspace}}/install-dir"
13
+ N_ITER_SAN : 400 # Number of iterations for sanitizers looped job
14
15
permissions:
16
contents: read
@@ -72,4 +73,4 @@ jobs:
72
73
74
ASAN_OPTIONS: allocator_may_return_null=1
75
TSAN_OPTIONS: allocator_may_return_null=1
- run: for i in {1..600}; do echo ">>> ITERATION no. ${i}" ; ctest --output-on-failure || exit 1; date; done
76
+ run: for i in {1..${{env.N_ITER_SAN}}}; do echo ">>> ITERATION no. ${i}" ; ctest --output-on-failure || exit 1; date; done
0 commit comments