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

chore: Change circle ci script to use Xcode 13 #3803

Merged
merged 3 commits into from
Oct 3, 2021
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
26 changes: 13 additions & 13 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ commands:
jobs:
build:
macos:
xcode: "12.1.0"
xcode: "13.0.0"
steps:
- skip_job_unless_required
- checkout_with_cache
Expand All @@ -272,7 +272,7 @@ jobs:

build_test_host_apps:
macos:
xcode: "12.1.0"
xcode: "13.0.0"
steps:
- skip_job_unless_required
- checkout_with_cache
Expand All @@ -289,7 +289,7 @@ jobs:

unit_test:
macos:
xcode: "12.1.0"
xcode: "13.0.0"
parameters:
project:
default: "AWSiOSSDKv2.xcodeproj"
Expand Down Expand Up @@ -342,7 +342,7 @@ jobs:

integ_test:
macos:
xcode: "12.1.0"
xcode: "13.0.0"
parameters:
project:
default: "AWSiOSSDKv2.xcodeproj"
Expand Down Expand Up @@ -393,7 +393,7 @@ jobs:

release_tag:
macos:
xcode: "12.1.0"
xcode: "13.0.0"
steps:
- skip_job_unless_required
- checkout_with_cache
Expand Down Expand Up @@ -428,7 +428,7 @@ jobs:

release_carthage:
macos:
xcode: "12.3.0"
xcode: "13.0.0"
steps:
- skip_job_unless_required
- checkout_with_cache
Expand All @@ -449,7 +449,7 @@ jobs:

release_cocoapods:
macos:
xcode: "12.1.0"
xcode: "13.0.0"
steps:
- skip_job_unless_required
- checkout_with_cache
Expand All @@ -467,7 +467,7 @@ jobs:

release_docs:
macos:
xcode: "12.1.0"
xcode: "13.0.0"
steps:
- skip_job_unless_required
- checkout_with_cache
Expand Down Expand Up @@ -497,7 +497,7 @@ jobs:
add_doc_tag:
macos:
xcode: "12.1.0"
xcode: "13.0.0"
steps:
- skip_job_unless_required
- checkout_with_cache
Expand All @@ -511,7 +511,7 @@ jobs:
bump_ios_sampleapp_version:
macos:
xcode: "12.1.0"
xcode: "13.0.0"
steps:
- skip_job_unless_required
- set_environment_variables
Expand All @@ -530,7 +530,7 @@ jobs:

release_xcframeworks:
macos:
xcode: "12.3.0"
xcode: "13.0.0"
steps:
- skip_job_unless_required
- checkout_with_cache
Expand Down Expand Up @@ -574,7 +574,7 @@ jobs:
release_xcframeworks_combined:
macos:
xcode: "12.1.0"
xcode: "13.0.0"
environment:
TERM: xterm-256color
steps:
Expand Down Expand Up @@ -618,7 +618,7 @@ jobs:
bump_sdk_version:
macos:
xcode: "12.1.0"
xcode: "13.0.0"
steps:
- skip_job_unless_required
- set_environment_variables
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
//

import XCTest
import CoreLocation
@testable import AWSLocation

class AWSLocationTrackerTests: XCTestCase {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
//

import XCTest
import CoreLocation
@testable import AWSLocation

class EmitLocationsOperationTests: XCTestCase {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
//

import XCTest
import CoreLocation
@testable import AWSLocation

class CLLocation_ExtensionTests: XCTestCase {
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@

## 2.26.1

-Features for next release
### Misc. Updates

- Support Xcode 13.0.0 for CircleCI build ([PR #3803](https://github.com/aws-amplify/aws-sdk-ios/pull/3803))

### Bug Fixes

Expand Down