From 1fee4dfb4ff5aae5b09f155c4900f2969dcab7d1 Mon Sep 17 00:00:00 2001 From: xtqqczze <45661989+xtqqczze@users.noreply.github.com> Date: Sat, 24 Jan 2026 03:52:40 +0000 Subject: [PATCH 1/2] ci: add step to disable Spotlight indexing on macOS --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6cf0e9f02f..6d60a05ae7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -209,6 +209,9 @@ jobs: norun: true steps: + - name: Disable Spotlight indexing + if: runner.os == 'macOS' + run : sudo mdutil -a -i off & - uses: actions/checkout@v4 - name: Install Rust run: | From 6e935b55447f037403d07caa280cd3ee0d330295 Mon Sep 17 00:00:00 2001 From: xtqqczze <45661989+xtqqczze@users.noreply.github.com> Date: Sat, 24 Jan 2026 02:29:59 +0000 Subject: [PATCH 2/2] ci: use `macos-15-intel` runner seems unnecessary to use `macos-15-large` just for x86_64 support --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6d60a05ae7..0f69dd45b2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -101,9 +101,9 @@ jobs: # macOS targets - tuple: x86_64-apple-darwin - os: macos-15-large + os: macos-15-intel - tuple: x86_64-apple-ios-macabi - os: macos-15-large + os: macos-15-intel - tuple: aarch64-apple-darwin os: macos-15 - tuple: aarch64-apple-ios-macabi