From 70f48e27702eb7c5a94cf1dae246a72622d94f82 Mon Sep 17 00:00:00 2001 From: DeeDeeG Date: Sun, 5 May 2024 20:26:53 -0400 Subject: [PATCH] CI: Pin to macOS 12 runner images instead of macos-latest (GiHub Actions) There is an issue with the libiconv library not being available in macOS 14 out of the box. We can get it from Homebrew perhaps, but for now pin to macos-12 runner images so we can be assured of having working CI faster, without having to R&D a libiconv- related workaround for macOS 14. --- .github/workflows/build.yml | 2 +- .github/workflows/editor-tests.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d381edcba..d7718e8b7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,7 @@ jobs: build: strategy: matrix: - os: [ ubuntu-latest, macos-latest, windows-latest ] + os: [ ubuntu-latest, macos-12, windows-latest ] include: - os: ubuntu-latest image: "debian:10" diff --git a/.github/workflows/editor-tests.yml b/.github/workflows/editor-tests.yml index 936c19aa3..c40264941 100644 --- a/.github/workflows/editor-tests.yml +++ b/.github/workflows/editor-tests.yml @@ -15,8 +15,8 @@ jobs: !startsWith(github.event.pull_request.title, '[skip-editor-ci]') strategy: matrix: - # os: [ubuntu-20.04, macos-latest, windows-2019] - os: [ubuntu-20.04, macos-latest] + # os: [ubuntu-20.04, macos-12, windows-2019] + os: [ubuntu-20.04, macos-12] fail-fast: false runs-on: ${{ matrix.os }} steps: