From 496b599524314d0679f85462a703dee39680e3b9 Mon Sep 17 00:00:00 2001 From: Alex Guretzki Date: Wed, 8 Jan 2025 14:08:21 +0100 Subject: [PATCH] Disabling deprecated compatibility builds (#1944) # Summary - Temporarily disabling tests that use macos-12 runners ([deprecated by github](https://github.com/actions/runner-images/issues/10721)) - Disables tests for iOS 15, 14 & 13 unfortunately - Switching from macos-13-xl to macos-13 (for some reason there is no xl runner anymore for macos-13) # Ticket COIOS-000 --- Screenshot 2025-01-08 at 11 52 33 Co-authored-by: Alex Guretzki --- .github/workflows/build.yml | 45 ++++++++++++++++++++----------------- 1 file changed, 24 insertions(+), 21 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dedddc9bcc..54244291ea 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,30 +36,33 @@ jobs: runtime: 'iOS-16-4' device: 'iPhone 14' displayname: 'iPhone-14' - os: 'macos-13-xl' + os: 'macos-13' xcode_version: '14.3' needs_custom_sim: false # Takes the shipped simulator that comes with Xcode 14 - - version: '15.0' - runtime: 'iOS-15-0' - device: 'iPhone 13' - displayname: 'iPhone-13' - os: 'macos-12-xl' - needs_custom_sim: true - - - version: '14.2' - device: 'iPhone 12' - displayname: 'iPhone-12' - runtime: 'iOS-14-2' - os: 'macos-12-xl' - needs_custom_sim: true - - - version: '13.7' - runtime: 'iOS-13-7' - device: 'iPhone 11' - displayname: 'iPhone-11' - os: 'macos-12-xl' - needs_custom_sim: true + # Github deprecated macos-12 runners + # so we have to find another solution to test on older iOS versions + # + # - version: '15.0' + # runtime: 'iOS-15-0' + # device: 'iPhone 13' + # displayname: 'iPhone-13' + # os: 'macos-12-xl' + # needs_custom_sim: true + # + # - version: '14.2' + # device: 'iPhone 12' + # displayname: 'iPhone-12' + # runtime: 'iOS-14-2' + # os: 'macos-12-xl' + # needs_custom_sim: true + # + # - version: '13.7' + # runtime: 'iOS-13-7' + # device: 'iPhone 11' + # displayname: 'iPhone-11' + # os: 'macos-12-xl' + # needs_custom_sim: true steps: - uses: actions/checkout@v4