Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

No Bug: Update xcode version on CI to 15.1 #8253

Closed
wants to merge 12 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
# The XCode version to use. If you want to update it please refer to this document:
# https://docs.github.com/en/actions/reference/specifications-for-github-hosted-runners#supported-software
# and set proper version.
XCODE_VERSION: "14.3.1"
XCODE_VERSION: "15.1"

steps:
- name: Select XCode
Expand Down
11 changes: 9 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ platform :ios do
run_tests(
project: "App/Client.xcodeproj",
scheme: "Debug",
devices: options[:test_all] ? ["iPhone 14 (16.4)", "iPhone 14 (17.0)"] : ["iPhone 14 (16.4)"],
# Note: At the moment Xcode 15.0.1 on GH Actions does not support older sim versions.
devices: options[:test_all] ? ["iPhone 14 (17.2)"] : ["iPhone 14 (17.2)"],
code_coverage: true,
ensure_devices_found: true,
skip_testing: [
Expand All @@ -53,6 +54,9 @@ platform :ios do
"ClientTests/HttpCookieExtensionTest/testSaveAndLoadCookie",
"ClientTests/UserAgentTests",
"ClientTests/CachedAdBlockEngineTests/testPerformance",
"ClientTests/ScriptExecutionTests/testSiteStateListenerScript",
"ClientTests/FarblingProtectionHelperTests/testGivenTheSameRandomManagerThenSameFakePluginData",
"ClientTests/ContentBlockerManagerTests/testContentBlockerManager",
"DataTests",
"BraveWalletTests/ManageSiteConnectionsStoreTests/testRemoveAllPermissions",
"BraveWalletTests/ManageSiteConnectionsStoreTests/testRemovePermissions",
Expand All @@ -65,13 +69,16 @@ platform :ios do
"BraveWalletTests/SendTokenStoreTests/testUDAddressResolutionTokenChange",
"BraveWalletTests/TransactionConfirmationStoreTests/testPrepareERC20Approve",
"BraveWalletTests/TransactionConfirmationStoreTests/testPrepareTransactionNotOnSelectedNetwork",
"BraveWalletTests/AccountActivityStoreTests/testUpdateEthereumAccount",
"BraveSharedTests/NSURLExtensionsTests/testBugzillaURLDomain",
]
)

run_tests(
project: "App/Client.xcodeproj",
scheme: "Debug",
devices: options[:test_all] ? ["iPad (10th generation) (16.4)", "iPad (10th generation) (17.0)"] : ["iPad (10th generation) (16.4)"],
# Note: At the moment Xcode 15.0.1 on GH Actions does not support older sim versions.
devices: options[:test_all] ? ["iPad (10th generation) (17.2)"] : ["iPad (10th generation) (17.2)"],
code_coverage: true,
ensure_devices_found: true,
skip_testing: [
Expand Down
Loading