From 6304c7a06f1d87b8ae2de792220e22884a2afb71 Mon Sep 17 00:00:00 2001 From: Sven Klemm Date: Sat, 7 Oct 2023 13:10:42 +0200 Subject: [PATCH] Reduce loops in scheduled sqlsmith runs The scheduled sqlsmith seems to run into timeout quite often so reduce the number of loops a bit. --- .github/workflows/sqlsmith.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sqlsmith.yaml b/.github/workflows/sqlsmith.yaml index 35b6ad324..68177ac6f 100644 --- a/.github/workflows/sqlsmith.yaml +++ b/.github/workflows/sqlsmith.yaml @@ -86,7 +86,7 @@ jobs: run: | set -o pipefail if [ "${{ github.event_name }}" == "schedule" ]; then - LOOPS=50 + LOOPS=40 else LOOPS=10 fi