From 2b3627b361cd380747731a95af08b662135dc847 Mon Sep 17 00:00:00 2001 From: Yarvin Date: Fri, 10 Oct 2025 09:12:20 +0200 Subject: [PATCH] Add Retry to all demo projects launches. --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c8ffa5f..a1fed74 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -172,6 +172,7 @@ jobs: os: windows-latest artifact-name: windows-nightly godot-binary: godot.windows.editor.dev.x86_64.exe + retry: true # Linux @@ -179,11 +180,13 @@ jobs: os: ubuntu-22.04 artifact-name: linux-nightly godot-binary: godot.linuxbsd.editor.dev.x86_64 + retry: true - name: linux-4.5 os: ubuntu-22.04 artifact-name: linux-4.5 godot-binary: godot.linuxbsd.editor.dev.x86_64 + retry: true # Deliberately don't include: # @@ -228,7 +231,7 @@ jobs: # Match all directories/files except `target` and any starting with `.`. files='!(target|.*)/' if [[ $RETRY == "true" ]]; then - # macOS – retry running demo projects several times on fail. + # Retry running demo projects several times on fail. echo "Running examples with retry" RETRY_CMD="./.github/other/retry.sh" else