From 364b86ec8ea88e4a77ba676b93fb10829d6a9cb3 Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Wed, 31 Jan 2024 10:42:21 +0100 Subject: [PATCH] ci: use M1 for macOS GH Actions runners use M1 hardware for `macos-14` now. Since macOS is one of the slowest platforms for parser compilation, switching should give us not only ARM coverage but also shorter CI times. --- .github/workflows/test-queries.yml | 4 ++-- .../{ci-install-macos-latest.sh => ci-install-macos-14.sh} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename scripts/{ci-install-macos-latest.sh => ci-install-macos-14.sh} (100%) diff --git a/.github/workflows/test-queries.yml b/.github/workflows/test-queries.yml index cd1d4c5f3..d5a3894e4 100644 --- a/.github/workflows/test-queries.yml +++ b/.github/workflows/test-queries.yml @@ -22,7 +22,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-2022, macos-latest] + os: [ubuntu-latest, windows-2022, macos-14] cc: [gcc, clang] nvim_tag: [stable] exclude: @@ -30,7 +30,7 @@ jobs: cc: clang nvim_tag: stable - - os: macos-latest + - os: macos-14 cc: gcc nvim_tag: stable diff --git a/scripts/ci-install-macos-latest.sh b/scripts/ci-install-macos-14.sh similarity index 100% rename from scripts/ci-install-macos-latest.sh rename to scripts/ci-install-macos-14.sh