Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: FlowCrypt iOS App
agent:
machine:
type: a2-standard-4
os_image: macos-xcode16
os_image: macos-xcode26
execution_time_limit:
minutes: 80
auto_cancel:
Expand Down Expand Up @@ -33,7 +33,7 @@ blocks:
- bundle exec fastlane test
- git clone https://github.com/appium/WebDriverAgent.git
- cd WebDriverAgent
- xcodebuild build-for-testing -project WebDriverAgent.xcodeproj -derivedDataPath /var/tmp/derived_data/WebDriverAgent -scheme WebDriverAgentRunner -destination "platform=iphonesimulator,OS=18.5,name=iPhone 16"
- xcodebuild build-for-testing -project WebDriverAgent.xcodeproj -derivedDataPath /var/tmp/derived_data/WebDriverAgent -scheme WebDriverAgentRunner -destination "platform=iphonesimulator,OS=26.0,name=iPhone 17"
epilogue:
always:
commands:
Expand Down
4 changes: 2 additions & 2 deletions appium/config/wdio.live.conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ config.capabilities = [
platformName: 'iOS',
hostname: '127.0.0.1',
'appium:automationName': 'XCUITest',
'appium:deviceName': 'iPhone 16',
'appium:platformVersion': '18.5',
'appium:deviceName': 'iPhone 17',
'appium:platformVersion': '26.0',
'appium:app': join(process.cwd(), './FlowCrypt.app'),
},
];
Expand Down
4 changes: 2 additions & 2 deletions appium/config/wdio.mock.conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ config.capabilities = [
'appium:processArguments': {
args: ['--mock-fes-api', '--mock-attester-api', '--mock-gmail-api'],
},
'appium:deviceName': 'iPhone 16',
'appium:platformVersion': '18.5',
'appium:deviceName': 'iPhone 17',
'appium:platformVersion': '26.0',
'appium:orientation': 'PORTRAIT',
'appium:app': join(process.cwd(), './FlowCrypt.app'),
'appium:simulatorStartupTimeout': 600000,
Expand Down
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ platform :ios do
scan(
project: "FlowCrypt.xcodeproj",
scheme: "Debug FlowCrypt",
device: "iPhone 16 (18.5)",
device: "iPhone 17 (26.0)",
derived_data_path: "/var/tmp/derived_data/FlowCrypt",
skip_detect_devices: true,
build_for_testing: true,
Expand All @@ -25,7 +25,7 @@ platform :ios do
scan(
project: "FlowCrypt.xcodeproj",
scheme: "FlowCryptAppTests",
device: "iPhone 16 (18.5)",
device: "iPhone 17 (26.0)",
test_without_building: true,
derived_data_path: "/var/tmp/derived_data/FlowCrypt",
xcargs: "-skipPackagePluginValidation -skipMacroValidation",
Expand Down