From 69be5321d2c2c125881b6edfed96676572b0ca03 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Wed, 31 Jan 2024 10:08:39 +0100 Subject: [PATCH] github action: run on native m1 (#2068) * github action: run on native m1 https://github.blog/changelog/2024-01-30-github-actions-introducing-the-new-m1-macos-runner-available-to-open-source/ * try to disable some path --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ea455bdd..df2c3becb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,6 +83,8 @@ jobs: extra_args: --features=unstable - os: ubuntu-22.04 - os: macOS-11 + # M1 CPU + - os: macos-14 - os: windows-2019 # Oldest supported version, keep in sync with README.md rustc: "1.70.0" @@ -147,11 +149,9 @@ jobs: macosx_deployment_target: 10.13 developer_dir: /Applications/Xcode_11.7.app sdkroot: /Applications/Xcode_11.7.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk - - os: macOS-11 + - os: macos-14 target: aarch64-apple-darwin macosx_deployment_target: 11.0 - developer_dir: /Applications/Xcode_13.2.1.app - sdkroot: /Applications/Xcode_13.2.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.1.sdk - os: windows-2019 target: x86_64-pc-windows-msvc rustflags: -Ctarget-feature=+crt-static