-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Travis CI build to include SPM, Cocoapods, and Carthage verifi…
…cation steps
- Loading branch information
1 parent
b4654b8
commit 6b83bac
Showing
1 changed file
with
19 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,20 @@ | ||
language: objective-c | ||
osx_image: xcode10.1 | ||
xcode_workspace: OktaAuthSdk.xcworkspace | ||
xcode_scheme: OktaAuthNative iOS | ||
xcode_destination: platform=iOS Simulator,OS=latest,name=iPhone 8 | ||
osx_image: xcode11.5 | ||
jobs: | ||
include: | ||
- stage: Unit tests iOS | ||
name: iOS | ||
script: | ||
- xcodebuild -workspace OktaAuthSdk.xcworkspace -scheme "OktaAuthNative iOS" -destination "platform=iOS Simulator,OS=latest,name=iPhone 11" clean test | ||
- stage: Swift Package Manager validation | ||
name: MacOS | ||
script: | ||
- swift test | ||
- stage: Cocoapods validation | ||
name: iOS | ||
script: | ||
- pod lib lint --allow-warnings | ||
- stage: Carthage validation | ||
name: iOS | ||
script: | ||
- carthage build --no-skip-current |