From cae517feac14f2e1554bb0edde275039703b27ee Mon Sep 17 00:00:00 2001 From: Lukasz Dorau Date: Mon, 16 Jun 2025 12:15:25 +0200 Subject: [PATCH] Print number of iteration in the weekly CI job Signed-off-by: Lukasz Dorau --- .github/workflows/weekly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml index fcaf8e913..500e5b0ed 100644 --- a/.github/workflows/weekly.yml +++ b/.github/workflows/weekly.yml @@ -72,4 +72,4 @@ jobs: env: ASAN_OPTIONS: allocator_may_return_null=1 TSAN_OPTIONS: allocator_may_return_null=1 - run: for i in {1..1000}; do ctest --output-on-failure || exit 1; date; done + run: for i in {1..600}; do echo ">>> ITERATION no. ${i}" ; ctest --output-on-failure || exit 1; date; done