Skip to content

Commit

Permalink
[xcode] Upgrade xcode to 14.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anhnguyen1618 committed Jul 14, 2023
1 parent 4c22355 commit cc2bf6b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -20,7 +20,7 @@ jobs:
parameters:
xcode:
type: string
default: "12.5.1"
default: "14.1.0"
cocoapods:
type: boolean
default: false
Expand Down
2 changes: 1 addition & 1 deletion Tests/Integration/test_carthage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion Tests/Integration/test_cocoapods.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion Tests/Integration/test_spm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit cc2bf6b

Please sign in to comment.