Skip to content

[CI] Bump Xcode version #818

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

Merged
merged 1 commit into from
Apr 29, 2025
Merged
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
37 changes: 9 additions & 28 deletions .github/workflows/cron-checks.yml
Original file line number Diff line number Diff line change
@@ -16,33 +16,13 @@ env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
build-test-app-and-frameworks:
name: Build Test App and Frameworks
runs-on: macos-15
steps:
- uses: actions/checkout@v4.1.1
- uses: ./.github/actions/ruby-cache
- uses: ./.github/actions/xcode-cache
- name: Build
run: bundle exec fastlane build_test_app_and_frameworks
timeout-minutes: 60
- uses: actions/upload-artifact@v4
if: success()
with:
name: cache-derived-data
path: |
derived_data/Build/**/*.app
derived_data/Build/**/*.xctestrun
derived_data/Build/**/*.framework

test-e2e-debug:
name: Test E2E UI (Debug)
needs: build-test-app-and-frameworks
strategy:
matrix:
include:
- ios: 18.2
xcode: 16.2
- ios: 18.3
xcode: 16.3
os: macos-15
device: "iPhone 16 Pro"
setup_runtime: false
@@ -64,10 +44,6 @@ jobs:
XCODE_VERSION: ${{ matrix.xcode }}
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/download-artifact@v4
with:
name: cache-derived-data
path: derived_data/Build/
- uses: ./.github/actions/bootstrap
env:
INSTALL_ALLURE: true
@@ -80,10 +56,13 @@ jobs:
with:
version: ${{ matrix.ios }}
device: ${{ matrix.device }}
- name: Build
run: bundle exec fastlane build_test_app_and_frameworks
timeout-minutes: 60
- name: Launch Allure TestOps
run: bundle exec fastlane allure_launch cron:true
- name: Run UI Tests (Debug)
run: bundle exec fastlane test_e2e_mock device:"${{ matrix.device }} (${{ matrix.ios }})" cron:true test_without_building:true
run: bundle exec fastlane test_e2e_mock device:"${{ matrix.device }} (${{ matrix.ios }})"
timeout-minutes: 90
- name: Allure TestOps Upload
if: success() || failure()
@@ -112,6 +91,8 @@ jobs:
strategy:
matrix:
include:
- xcode: 16.3
os: macos-15
- xcode: 16.2
os: macos-15
- xcode: 16.1
@@ -169,7 +150,7 @@ jobs:
slack:
name: Slack Report
runs-on: ubuntu-latest
needs: [test-e2e-debug, build-test-app-and-frameworks, build-apps, build-old-xcode, automated-code-review]
needs: [test-e2e-debug, build-apps, build-old-xcode, automated-code-review]
if: failure() && github.event_name == 'schedule'
steps:
- uses: 8398a7/action-slack@v3
2 changes: 1 addition & 1 deletion .github/workflows/smoke-checks.yml
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ concurrency:

env:
HOMEBREW_NO_INSTALL_CLEANUP: 1 # Disable cleanup for homebrew, we don't need it on CI
IOS_SIMULATOR_DEVICE: "iPhone 16 Pro (18.2)"
IOS_SIMULATOR_DEVICE: "iPhone 16 Pro (18.3)"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_PR_NUM: ${{ github.event.pull_request.number }}

1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -18,7 +18,6 @@ group :fastlane_dependencies do
gem 'cocoapods'
gem 'fastlane-plugin-lizard'
gem 'plist'
gem 'xcode-install'
gem 'xctest_list'
end

Loading