From a8fe167426fc07ba71642d4760f85a73a5e1d83d Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Thu, 16 Jan 2025 14:06:39 -0500 Subject: [PATCH] test(ci): switch to macos-15 runners to avoid iOS SDK 18.2 issue it appears the macos-14 runners have a simulator definition issue, which breaks our tests on macos-14. macos-15 apparently does not suffer the same, and is the future anyway. switch now --- .github/workflows/tests_e2e_ios.yml | 2 +- .github/workflows/tests_e2e_other.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests_e2e_ios.yml b/.github/workflows/tests_e2e_ios.yml index 02281a65f9..a54fcb8c6a 100644 --- a/.github/workflows/tests_e2e_ios.yml +++ b/.github/workflows/tests_e2e_ios.yml @@ -27,7 +27,7 @@ concurrency: jobs: ios: name: iOS - runs-on: macos-14-xlarge + runs-on: macos-15-xlarge # TODO matrix across APIs, at least 11 and 15 (lowest to highest) timeout-minutes: 60 env: diff --git a/.github/workflows/tests_e2e_other.yml b/.github/workflows/tests_e2e_other.yml index 0b0aaa6ed8..c8534b9d23 100644 --- a/.github/workflows/tests_e2e_other.yml +++ b/.github/workflows/tests_e2e_other.yml @@ -27,7 +27,7 @@ concurrency: jobs: other: name: Other - runs-on: macos-14-xlarge + runs-on: macos-15-xlarge timeout-minutes: 100 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}