aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/continuous-integration-workflow.yml
diff options
context:
space:
mode:
authorChris Packham <judge.packham@gmail.com>2024-05-11 15:03:39 +1200
committerChris Packham <judge.packham@gmail.com>2024-05-14 08:58:31 +1200
commitb1433efd80467a51510c78301bf520c715a3caf9 (patch)
tree237bcf2bb0a31089796df65d4b9cd7989ba19f13 /.github/workflows/continuous-integration-workflow.yml
parent810021d9125a66f6a7cd0862d59aab3d32252a9f (diff)
downloadcrosstool-ng-b1433efd80467a51510c78301bf520c715a3caf9.tar.gz
crosstool-ng-b1433efd80467a51510c78301bf520c715a3caf9.tar.bz2
crosstool-ng-b1433efd80467a51510c78301bf520c715a3caf9.zip
CI: pin macos runners to macos-12
macos-latest has recently (as of April 2024) started transitioning to macos-14 (previously it was macos-12). This seems to be missing things we rely on (e.g. makeinfo) and even when those are added throws other errors. For now lets pin things to macos-12 until someone can spend some time looking at why we can't use macos-14. Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to '.github/workflows/continuous-integration-workflow.yml')
-rw-r--r--.github/workflows/continuous-integration-workflow.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml
index 06d8aa44..22845494 100644
--- a/.github/workflows/continuous-integration-workflow.yml
+++ b/.github/workflows/continuous-integration-workflow.yml
@@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.host }}
strategy:
matrix:
- host: ["ubuntu-22.04", "macos-latest"]
+ host: ["ubuntu-22.04", "macos-12"]
steps:
- name: "clone"
uses: actions/checkout@v4