From ca8f2ec3b66cfd4aa2e1acad2f07b02037ddefe5 Mon Sep 17 00:00:00 2001 From: Jamil Date: Mon, 23 Oct 2023 11:35:25 -0700 Subject: [PATCH] Remove macos-14 runner from swift build (#2484) Temporarily disable self-hosted runners (`macos-14`) until official GH runners can back them up. --- .github/CODEOWNERS | 14 +++++++------- .github/workflows/swift.yml | 20 ++++++++++++-------- 2 files changed, 19 insertions(+), 15 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 77ef64b98..eb1123471 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,7 +1,7 @@ -.github/ @AndrewDryga @jamilbk -elixir/ @AndrewDryga -terraform/ @AndrewDryga -website/ @jamilbk -rust/ @conectado -swift/ @roop -kotlin/ @pratikvelani +# .github/ @AndrewDryga @jamilbk +# elixir/ @AndrewDryga +# terraform/ @AndrewDryga +# website/ @jamilbk +# rust/ @conectado +# swift/ @roop +# kotlin/ @pratikvelani diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index b58a9e3b7..6603319f6 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -29,14 +29,18 @@ jobs: platform: iOS destination: generic/platform=iOS xcode: "15.0" - - sdk: macosx - runs-on: macos-14 - platform: macOS - destination: platform=macOS - - sdk: iphoneos - runs-on: macos-14 - platform: iOS - destination: generic/platform=iOS + # TODO: Enable when GH Actions has macos-14 runners. Until this, this depends + # on self-hosted runners which can be less reliable and have issues with things + # like sccache. + # See https://github.com/firezone/firezone/actions/runs/6608338431/job/17946908445 + # - sdk: macosx + # runs-on: macos-14 + # platform: macOS + # destination: platform=macOS + # - sdk: iphoneos + # runs-on: macos-14 + # platform: iOS + # destination: generic/platform=iOS permissions: contents: read id-token: 'write'