Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
testableapple committed Sep 2, 2024
1 parent 70e4b2f commit e5b1526
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-ios-runtime/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
- name: Setup iOS Simulator Runtime
shell: bash
run: |
brew install xcodesorg/made/xcodes
brew install blacktop/tap/ipsw
bundle exec fastlane install_runtime ios:${{ inputs.version }}
xcrun simctl list runtimes
- name: Create Custom iOS Simulator
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/cron-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
# os: macos-14
# device: "iPhone 14"
# setup_runtime: true
- ios: 15.4
- ios: 15.5
xcode: 15.4
os: macos-14
device: "iPhone 13 Pro"
Expand All @@ -65,7 +65,9 @@ jobs:
IOS_SIMULATOR_DEVICE: "${{ matrix.device }} (${{ matrix.ios }})" # For the Allure report
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/disk-space
- run: |
rm -rfv ~/Library/Developer/CoreSimulator/*
rm -rfv /Library/Developer/CoreSimulator/*
if: ${{ matrix.setup_runtime }}
- uses: ./.github/actions/bootstrap
env:
Expand Down
3 changes: 2 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,8 @@ lane :run_swift_format do |options|
end

lane :install_runtime do |options|
install_ios_runtime(version: options[:ios], tool: 'xcodes')
install_ios_runtime(version: options[:ios], custom_script: 'Scripts/install_ios_runtime.sh')
# install_ios_runtime(version: options[:ios], tool: 'xcodes')
end

desc 'Remove UI Snapshots'
Expand Down

0 comments on commit e5b1526

Please sign in to comment.