From b1b225d84a951ed67793b51b6300c183b93a6cc8 Mon Sep 17 00:00:00 2001 From: Marek Kaput Date: Wed, 31 Jan 2024 09:14:26 +0100 Subject: [PATCH] CI: Use M1 runners wherever possible (#1101) https://github.blog/changelog/2024-01-30-github-actions-introducing-the-new-m1-macos-runner-available-to-open-source/ --------- Signed-off-by: Marek Kaput --- .github/workflows/_build-release.yml | 8 ++++---- .github/workflows/_check-release.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/_build-release.yml b/.github/workflows/_build-release.yml index 4a599a116..9ba7733a9 100644 --- a/.github/workflows/_build-release.yml +++ b/.github/workflows/_build-release.yml @@ -45,10 +45,10 @@ jobs: cross: true - target: x86_64-apple-darwin - os: macos-latest + os: macos-13 - target: aarch64-apple-darwin - os: macos-latest + os: macos-14 - target: x86_64-pc-windows-msvc os: windows-latest @@ -104,8 +104,8 @@ jobs: - target: x86_64-unknown-linux-gnu os: ubuntu-22.04 - - target: x86_64-apple-darwin - os: macos-12 + - target: aarch64-apple-darwin + os: macos-14 - target: x86_64-pc-windows-msvc os: windows-2019 diff --git a/.github/workflows/_check-release.yml b/.github/workflows/_check-release.yml index 1bec160a5..28f8b581a 100644 --- a/.github/workflows/_check-release.yml +++ b/.github/workflows/_check-release.yml @@ -30,8 +30,8 @@ jobs: include: - name: linux x86-64 os: ubuntu-latest - - name: macos x86-64 - os: macos-latest + - name: macos aarch64 + os: macos-14 - name: windows x86-64 os: windows-latest steps: