From 151c2d3c009aeb58e0a365f3e81b8bfe667fc965 Mon Sep 17 00:00:00 2001 From: Alexey Alter-Pesotskiy Date: Tue, 3 Sep 2024 16:04:36 +0100 Subject: [PATCH] [CI] Clean up some disk space on CI before downloading iOS runtimes (#506) --- .github/actions/setup-ios-runtime/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/setup-ios-runtime/action.yml b/.github/actions/setup-ios-runtime/action.yml index aeec23e13..89164b238 100644 --- a/.github/actions/setup-ios-runtime/action.yml +++ b/.github/actions/setup-ios-runtime/action.yml @@ -6,8 +6,10 @@ runs: - name: Setup iOS Simulator Runtime shell: bash run: | + sudo rm -rfv ~/Library/Developer/CoreSimulator/* || true brew install blacktop/tap/ipsw bundle exec fastlane install_runtime ios:${{ inputs.version }} + sudo rm -rfv *.dmg || true xcrun simctl list runtimes - name: Create Custom iOS Simulator shell: bash