From a94c79a790bd2e89ce5f368c4ad9709f6906cebf Mon Sep 17 00:00:00 2001 From: a-kenji Date: Mon, 5 Aug 2024 13:20:05 +0200 Subject: [PATCH] ci: update darwin runners --- .github/workflows/darwin.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/darwin.yml b/.github/workflows/darwin.yml index 95aa6cd..177dd73 100644 --- a/.github/workflows/darwin.yml +++ b/.github/workflows/darwin.yml @@ -9,7 +9,7 @@ on: jobs: build: - runs-on: "macos-11" + runs-on: "macos-14" steps: - name: "checkout repo" @@ -21,6 +21,9 @@ jobs: - name: "Install Rust (ARM)" shell: bash run: "rustup target add aarch64-apple-darwin" + - name: "Install Rust Intel" + shell: bash + run: "rustup target add x86_64-apple-darwin" - name: "Build (Intel)" shell: bash run: |