-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
How about using Github Actions to run old iOS versions?
- Loading branch information
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
name: "Firefox UI Tests for iOS 15 & 16" | ||
name: "Firefox UI Tests for iOS 15, 16 & 17" | ||
|
||
on: | ||
workflow_dispatch: {} | ||
env: | ||
browser: firefox-ios | ||
xcode_version: 15.4 | ||
ios_version: 17.5 | ||
ios_simulator_default: iPhone 15 | ||
xcode_version: 16.1 | ||
ios_version: 18.1 | ||
ios_simulator_default: iPhone 16 | ||
xcodebuild_scheme: Fennec | ||
xcodebuild_target: Client | ||
test_results_directory: /Users/runner/tmp | ||
|
||
jobs: | ||
compile: | ||
name: Compile | ||
runs-on: macos-14 | ||
runs-on: macos-15 | ||
steps: | ||
- name: Check out source code | ||
uses: actions/[email protected] | ||
|
@@ -54,13 +54,15 @@ jobs: | |
|
||
run-smoketests: | ||
name: Run smoke tests | ||
runs-on: macos-14 | ||
runs-on: macos-15 | ||
needs: compile | ||
strategy: | ||
fail-fast: false | ||
max-parallel: 1 | ||
matrix: | ||
include: | ||
- ios_version: 17.5 | ||
ios_simulator: iPhone 15 | ||
- ios_version: 16.4 | ||
ios_simulator: iPhone 14 | ||
- ios_version: 15.5 | ||
|
@@ -78,8 +80,6 @@ jobs: | |
id: xcode | ||
run: | | ||
sudo rm -rf /Applications/Xcode.app | ||
sudo rm -fr /Applications/Xcode_16* | ||
sudo rm -fr /Applications/Xcode_14* | ||
sudo xcode-select -s /Applications/Xcode_${{ env.xcode_version }}.app/Contents/Developer | ||
xcodebuild -version | ||
./checkout.sh | ||
|