Skip to content

Commit

Permalink
bump to deployment target to 10 & use manual setup for travis
Browse files Browse the repository at this point in the history
the test action in the xcodeproject isn't supported
  • Loading branch information
diederich committed Jul 6, 2023
1 parent 8ad3e0c commit cde06cc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
9 changes: 4 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
os: osx
osx_image: xcode14.2
language: objective-c
xcode_workspace: InAppSettingsKit.xcworkspace
xcode_destination: platform=iOS Simulator,OS=16.2,name=iPhone 12
matrix:
include:
- stage: Static Library & Tests
xcode_scheme: InAppSettingsKit
script:
- xcodebuild -project InAppSettingsKit.xcodeproj -scheme InAppSettingsKit -destination 'platform=iOS Simulator,OS=16.2,name=iPhone 14' build | xcpretty
- stage: Framework
script:
- xcodebuild -project InAppSettingsKit.xcodeproj -scheme InAppSettingsKitFramework build | xcpretty
- xcodebuild -project InAppSettingsKit.xcodeproj -scheme InAppSettingsKitFramework -destination 'platform=iOS Simulator,OS=16.2,name=iPhone 14' build | xcpretty
- stage: Sample App
script:
- xcodebuild -workspace InAppSettingsKit.xcworkspace -scheme Sample\ App -destination platform\=iOS\ Simulator,OS\=16.2,name\=iPhone\ 12 build | xcpretty
- xcodebuild -workspace InAppSettingsKit.xcworkspace -scheme Sample\ App -destination 'platform=iOS Simulator,OS=16.2,name=iPhone 14' build | xcpretty
- stage: Carthage Setup
script:
- brew update
Expand Down
4 changes: 2 additions & 2 deletions InAppSettingsKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@
isa = XCBuildConfiguration;
baseConfigurationReference = E4A95F30177DB25C00FF0906 /* Debug.xcconfig */;
buildSettings = {
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
SDKROOT = iphoneos;
};
name = Debug;
Expand All @@ -745,7 +745,7 @@
isa = XCBuildConfiguration;
baseConfigurationReference = E4A95F32177DB25C00FF0906 /* Release.xcconfig */;
buildSettings = {
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
SDKROOT = iphoneos;
};
name = Release;
Expand Down

0 comments on commit cde06cc

Please sign in to comment.