Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#2627 Use Xcode16 in sempahoreci #2628

Closed
wants to merge 2 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
10 changes: 3 additions & 7 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: a1-standard-4
os_image: macos-xcode15
os_image: macos-xcode16
execution_time_limit:
minutes: 120
auto_cancel:
Expand Down Expand Up @@ -86,17 +86,13 @@ blocks:
- artifact push job ~/git/flowcrypt-ios/appium/tmp
- test-results publish ~/git/flowcrypt-ios/appium/tmp/test-results
jobs:
- name: Run Mock inbox tests
- name: Run Mock inbox + compose tests
commands:
- npm run-script test.mock.inbox
- name: Run Mock compose tests
commands:
- npm run-script test.mock.compose
- name: Run Mock setup tests
- name: Run Mock setup + live + other test
commands:
- npm run-script test.mock.setup
- name: Run Mock other tests + Run Live tests
commands:
- npm run-script test.mock.login-settings
# temporary disabled because of e2e account login issue
# - 'wget https://flowcrypt.s3.eu-central-1.amazonaws.com/release/flowcrypt-ios-old-version-for-ci-storage-compatibility-2022-05-09.zip -P ~/git/flowcrypt-ios/appium'
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 15',
'appium:platformVersion': '17.4',
'appium:deviceName': 'iPhone 16',
'appium:platformVersion': '18.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 15',
'appium:platformVersion': '17.4',
'appium:deviceName': 'iPhone 16',
'appium:platformVersion': '18.0',
'appium:orientation': 'PORTRAIT',
'appium:app': join(process.cwd(), './FlowCrypt.app'),
'appium:newCommandTimeout': 240,
Expand Down
Loading
Loading