From 201988bbe148b074a1e11b4f14440fc24f7fe0fa Mon Sep 17 00:00:00 2001 From: Alexey Alexandrov Date: Tue, 25 Aug 2026 01:34:26 +0000 Subject: [PATCH] Stop on first failure when fetching Windows dependencies. Specify --stop-on-first-failure in choco install so that a failure to fetch graphviz is not shadowed by subsequent successful fetches. --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6c6606952a..91541ff53a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -189,7 +189,7 @@ jobs: - name: Fetch Windows dependency uses: crazy-max/ghaction-chocolatey@dfdcf5bba9c0a16358a21c13a06ec5c89024b3ac # v4.1.0 with: - args: install graphviz llvm + args: install --stop-on-first-failure graphviz llvm - name: Run the test run: |