From 5356b09d3c7ad201d973e98959767a71ca41a9cb Mon Sep 17 00:00:00 2001 From: Anton-4 <17049058+Anton-4@users.noreply.github.com> Date: Wed, 15 Oct 2025 11:00:27 +0200 Subject: [PATCH] zig build retry protection Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com> --- .github/workflows/ci_zig.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_zig.yml b/.github/workflows/ci_zig.yml index fe601c14dc..ee868e7207 100644 --- a/.github/workflows/ci_zig.yml +++ b/.github/workflows/ci_zig.yml @@ -98,8 +98,11 @@ jobs: sudo rm /usr/lib/llvm-18/bin/llvm-config - name: build repro executables - run: | - zig build -Dfuzz -Dsystem-afl=false + uses: ./.github/actions/flaky-retry + with: + command: 'zig build -Dfuzz -Dsystem-afl=false' + error_string_contains: 'EndOfStream' + retry_count: 3 - name: Run Test Platforms (Unix) if: runner.os != 'Windows'