diff --git a/.circleci/config.yml b/.circleci/config.yml index 399a4a4..f617c07 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,7 +6,7 @@ workflows: jobs: - macos-job: name: SPM - xcode: "12.5.1" # Required for using binary frameworks with SPM + xcode: "14.1.0" # Required for using binary frameworks with SPM spm: true - macos-job: name: Carthage @@ -20,7 +20,7 @@ jobs: parameters: xcode: type: string - default: "12.5.1" + default: "14.1.0" cocoapods: type: boolean default: false diff --git a/Tests/Integration/test_carthage.sh b/Tests/Integration/test_carthage.sh index a8297f1..6891b32 100755 --- a/Tests/Integration/test_carthage.sh +++ b/Tests/Integration/test_carthage.sh @@ -7,6 +7,6 @@ pushd "${ROOT_DIR}/Tests/Integration/Carthage" xcodegen generate carthage update --platform iOS --use-netrc --use-xcframeworks -xcodebuild -project CarthageTest.xcodeproj -scheme CarthageTest -destination 'platform=iOS Simulator,name=iPhone 11,OS=latest' build +xcodebuild -project CarthageTest.xcodeproj -scheme CarthageTest -destination 'platform=iOS Simulator,name=iPhone 14,OS=latest' build popd diff --git a/Tests/Integration/test_cocoapods.sh b/Tests/Integration/test_cocoapods.sh index 76a9daf..972bdf2 100755 --- a/Tests/Integration/test_cocoapods.sh +++ b/Tests/Integration/test_cocoapods.sh @@ -9,6 +9,6 @@ xcodegen generate bundle install bundle exec pod repo update bundle exec pod install -xcodebuild -workspace PodInstall.xcworkspace -scheme PodInstall -destination 'platform=iOS Simulator,name=iPhone 11,OS=latest' build +xcodebuild -workspace PodInstall.xcworkspace -scheme PodInstall -destination 'platform=iOS Simulator,name=iPhone 14,OS=latest' build popd diff --git a/Tests/Integration/test_spm.sh b/Tests/Integration/test_spm.sh index ed26426..fbdb1b3 100755 --- a/Tests/Integration/test_spm.sh +++ b/Tests/Integration/test_spm.sh @@ -6,6 +6,6 @@ ROOT_DIR="${DIR}/../.." pushd "${ROOT_DIR}/Tests/Integration/SPM" xcodegen generate -xcodebuild -project SPMTest.xcodeproj -scheme SPMTest -scmProvider system -destination 'platform=iOS Simulator,name=iPhone 11,OS=latest' build +xcodebuild -project SPMTest.xcodeproj -scheme SPMTest -scmProvider system -destination 'platform=iOS Simulator,name=iPhone 14,OS=latest' build popd