From 8466c4a19a15e2da6f848ac2d3fd6d5f6f0b6d33 Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Fri, 9 Sep 2022 11:30:14 -0400 Subject: Cirrus: Don't run win_installer in multiarch cron The win_installer task fails on the `multiarch` cirrus-cron build. This is because it depends on the `Windows Cross` (alt_build) task which is bypassed in this context. This will cause the `repo.tbz` download to constantly throw 404s. Fix this by skipping the win_installer task for the `multiarch` (container images) build. Signed-off-by: Chris Evich --- .cirrus.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.cirrus.yml b/.cirrus.yml index 5d9500e92..4d7fbde13 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -1110,6 +1110,8 @@ artifacts_task: win_installer_task: name: "Verify Win Installer Build" alias: win_installer + # Don't run for multiarch container image cirrus-cron job. + only_if: $CIRRUS_CRON != 'multiarch' depends_on: - alt_build windows_container: -- cgit v1.2.3-54-g00ecf