From 048bd87c2e2287d3f4704d07be0b0011460ea12c Mon Sep 17 00:00:00 2001 From: Dan Balasescu Date: Fri, 22 Aug 2025 13:31:43 +0900 Subject: [PATCH] No longer download iOS simulator https://github.com/actions/runner-images/issues/12862#issuecomment-3211455624 --- .github/workflows/ci.yml | 4 +--- .github/workflows/deploy-pack.yml | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b12c84a3..7328bd05b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -146,9 +146,7 @@ jobs: # https://github.com/dotnet/macios/issues/19157 # https://github.com/actions/runner-images/issues/12758 - name: Use Xcode 16.4 - run: | - sudo xcode-select -switch /Applications/Xcode_16.4.app - xcodebuild -downloadPlatform iOS + run: sudo xcode-select -switch /Applications/Xcode_16.4.app - name: Compile run: dotnet build -c Debug osu-framework.iOS.slnf diff --git a/.github/workflows/deploy-pack.yml b/.github/workflows/deploy-pack.yml index 7995c83d0..bfe9c0eb0 100644 --- a/.github/workflows/deploy-pack.yml +++ b/.github/workflows/deploy-pack.yml @@ -171,9 +171,7 @@ jobs: # https://github.com/dotnet/macios/issues/19157 # https://github.com/actions/runner-images/issues/12758 - name: Use Xcode 16.4 - run: | - sudo xcode-select -switch /Applications/Xcode_16.4.app - xcodebuild -downloadPlatform iOS + run: sudo xcode-select -switch /Applications/Xcode_16.4.app - name: Pack (iOS Framework) run: dotnet pack -c Release osu.Framework.iOS /p:Version=${{ github.ref_name }} /p:GenerateDocumentationFile=true -o ${{steps.artifactsPath.outputs.nuget_artifacts}}