From f5572eb4e1193a1eea760f1c93c82e146b733dab Mon Sep 17 00:00:00 2001 From: renaud gaudin Date: Thu, 23 Nov 2023 08:33:31 +0000 Subject: [PATCH] Running a single job at once for CI and CD Hopefully this will reduce the number of failures due to contacting Apple --- .github/workflows/cd.yml | 1 + .github/workflows/ci.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 2b219efc..b6a02ecd 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -19,6 +19,7 @@ jobs: build_and_deploy: strategy: fail-fast: false + max-parallel: 1 matrix: destination: - platform: macOS diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e43f967e..65442438 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,7 @@ jobs: runs-on: macos-13 strategy: fail-fast: false + max-parallel: 1 matrix: destination: - platform: macOS