From 7b2e44e11116b2ef5e363c2b6d00a2e4b2329102 Mon Sep 17 00:00:00 2001 From: "Jonathan B. Coe" Date: Mon, 1 Sep 2025 19:19:31 +0100 Subject: [PATCH 1/2] Do not install CMake on MacOS CI machines See issue https://github.com/actions/runner-images/issues/12912 --- .github/workflows/test_and_deploy.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index dd6e1bba5..59244e16d 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -34,9 +34,6 @@ jobs: libbz2-dev \ ninja-build \ software-properties-common - else - brew install cmake - fi - uses: actions/checkout@v4 with: submodules: true @@ -55,9 +52,6 @@ jobs: python-version: '3.10' - name: Ensure latest pip, wheel & setuptools run: python -m pip install -q --upgrade pip wheel setuptools - - name: Install dependencies - run: | - brew install cmake - uses: actions/checkout@v4 with: submodules: true @@ -86,9 +80,6 @@ jobs: python-version: 3.13 - name: Ensure latest pip, wheel & setuptools run: python -m pip install -q --upgrade pip wheel setuptools - - name: Install dependencies - run: | - brew install cmake - uses: actions/checkout@v4 with: submodules: true From 167d83e0d2d425fda25cfaf072aa363a0dec8c9d Mon Sep 17 00:00:00 2001 From: "Jonathan B. Coe" Date: Tue, 2 Sep 2025 10:15:07 +0100 Subject: [PATCH 2/2] Add missing "fi" --- .github/workflows/test_and_deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 59244e16d..5e9b7ab87 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -34,6 +34,7 @@ jobs: libbz2-dev \ ninja-build \ software-properties-common + fi - uses: actions/checkout@v4 with: submodules: true