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

CircleCI: changed all jobs to use Xcode 14 #1909

Merged
merged 2 commits into from
Sep 19, 2022
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
36 changes: 20 additions & 16 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -561,43 +561,47 @@ workflows:
equal: [ scheduled_pipeline, << pipeline.trigger_source >> ]
jobs:
- lint:
xcode_version: '13.4.1'
xcode_version: '14.0.0'
- run-test-ios-16:
xcode_version: '14.0.0'
- spm-build:
xcode_version: '13.4.1'
xcode_version: '14.0.0'
- run-test-ios-15:
xcode_version: '13.4.1'
xcode_version: '14.0.0'
- run-test-tvos:
xcode_version: '13.4.1'
xcode_version: '14.0.0'
- run-test-ios-14:
xcode_version: '13.4.1'
xcode_version: '14.0.0'
- run-test-ios-13:
xcode_version: '13.4.1'
xcode_version: '14.0.0'
<<: *release-branches-and-main
- run-test-ios-12:
xcode_version: '13.4.1'
xcode_version: '14.0.0'
<<: *release-branches-and-main
- build-tv-watch-and-macos:
# This is the only job not using Xcode 14 yet
# because it does not contain the new macOS SDK until Ventura is release.
xcode_version: '13.4.1'
NachoSoto marked this conversation as resolved.
Show resolved Hide resolved
- release-checks:
xcode_version: '13.4.1'
xcode_version: '14.0.0'
<<: *release-branches
- backend-integration-tests:
xcode_version: '13.4.1'
xcode_version: '14.0.0'
filters:
branches:
# Forked pull requests have CIRCLE_BRANCH set to pull/XXX
ignore: /pull\/[0-9]+/
- installation-tests-cocoapods:
xcode_version: '13.4.1'
xcode_version: '14.0.0'
<<: *release-tags-and-branches
- installation-tests-swift-package-manager:
xcode_version: '13.4.1'
xcode_version: '14.0.0'
<<: *release-tags-and-branches
- installation-tests-carthage:
xcode_version: '13.4.1'
xcode_version: '14.0.0'
<<: *release-tags-and-branches
- installation-tests-xcode-direct-integration:
xcode_version: '13.4.1'
xcode_version: '14.0.0'
<<: *release-tags-and-branches
deploy:
when:
Expand All @@ -612,7 +616,7 @@ workflows:
- hold
<<: *release-branches
- make-release:
xcode_version: '13.4.1'
xcode_version: '14.0.0'
<<: *release-tags
- docs-deploy:
xcode_version: '14.0.0'
Expand All @@ -623,7 +627,7 @@ workflows:
equal: [ scheduled_pipeline, << pipeline.trigger_source >> ]
jobs:
- prepare-next-version:
xcode_version: '13.4.1'
xcode_version: '14.0.0'
<<: *only-main-branch
danger:
jobs:
Expand All @@ -635,4 +639,4 @@ workflows:
- equal: [ "release-train", << pipeline.schedule.name >> ]
jobs:
- release-train:
xcode_version: '13.4.1'
xcode_version: '14.0.0'