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

[CI] Bump to XCode 15 #257

Merged
merged 3 commits into from
Apr 30, 2024
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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ workflows:
jobs:
- macos-job:
name: SPM
xcode: "14.1.0" # Required for using binary frameworks with SPM
xcode: "15.2.0"
spm: true
- macos-job:
name: Carthage
Expand All @@ -31,7 +31,7 @@ jobs:
parameters:
xcode:
type: string
default: "14.1.0"
default: "15.2.0"
cocoapods:
type: boolean
default: false
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.7
// swift-tools-version:5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription
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 14,OS=latest' build
xcodebuild -project CarthageTest.xcodeproj -scheme CarthageTest -destination 'platform=iOS Simulator,name=iPhone 14,OS=latest' build CODE_SIGNING_ALLOWED=NO

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 14,OS=latest' build
xcodebuild -workspace PodInstall.xcworkspace -scheme PodInstall -destination 'platform=iOS Simulator,name=iPhone 14,OS=latest' build CODE_SIGNING_ALLOWED=NO

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 14,OS=latest' build
xcodebuild -project SPMTest.xcodeproj -scheme SPMTest -scmProvider system -destination 'platform=iOS Simulator,name=iPhone 14,OS=latest' build CODE_SIGNING_ALLOWED=NO

popd
4 changes: 2 additions & 2 deletions scripts/release/Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.7
// swift-tools-version:5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription
Expand All @@ -12,7 +12,7 @@ let package = Package(
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
.executableTarget(
name: "set-marketing-version",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
Expand Down