Skip to content

Commit cde4cb8

Browse files
authored
Merge pull request #1381 from ldorau/Decrease_number_of_iterations_for_sanitizers_looped_job_to_400
Decrease number of iterations for sanitizers looped job to 400
2 parents e9fdb84 + a6f3b3b commit cde4cb8

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)