Skip to content

Commit a6f3b3b

Browse files
committed
Decrease number of iterations for sanitizers looped job to 400
Decrease number of iterations for sanitizers looped job to 400, since 449 is the hard limit for one of jobs ("Sanitizers looped (gcc, g++, OFF, OFF, ON)"). Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com>
1 parent 1ae1fe6 commit a6f3b3b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/weekly.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
env:
1111
BUILD_DIR : "${{github.workspace}}/build"
1212
INSTL_DIR : "${{github.workspace}}/install-dir"
13+
N_ITER_SAN : 400 # Number of iterations for sanitizers looped job
1314

1415
permissions:
1516
contents: read
@@ -72,4 +73,4 @@ jobs:
7273
env:
7374
ASAN_OPTIONS: allocator_may_return_null=1
7475
TSAN_OPTIONS: allocator_may_return_null=1
75-
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

Comments
 (0)