-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop' into HEAD
- Loading branch information
Showing
17 changed files
with
425 additions
and
173 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,27 +1,37 @@ | ||
task: | ||
name: macOS | ||
osx_instance: | ||
image: mojave-xcode-11 | ||
image: catalina-xcode-11.4 | ||
xcode_version_script: | ||
- xcode-select -p | ||
- sudo xcode-select -s /Applications/Xcode.app/Contents/Developer | ||
- xcodebuild -version | ||
download_dependencies_script: make cache | ||
brew_update_script: brew update | ||
install_carthage_script: brew install carthage | ||
xcode_version_script: xcodebuild -version | ||
test_macos_script: make test-macos | ||
test_macos_script: make test-macos || (echo System Log; tail -n 1000 /var/log/system.log; echo Simulator Logs; cat ~/Library/Logs/CoreSimulator/*/system.log; echo Xcode Crash Logs; find ~/Library/Developer/Xcode/DerivedData/ -iname *.crash -print -exec cat {} \;) | ||
|
||
task: | ||
name: iOS | ||
osx_instance: | ||
image: mojave-xcode-11 | ||
image: catalina-xcode-11.4 | ||
xcode_version_script: | ||
- xcode-select -p | ||
- sudo xcode-select -s /Applications/Xcode.app/Contents/Developer | ||
- xcodebuild -version | ||
download_dependencies_script: make cache | ||
brew_update_script: brew update | ||
install_carthage_script: brew install carthage | ||
xcode_version_script: xcodebuild -version | ||
xcode_show_destinations_script: make show-destinations | ||
test_ios_script: make test-ios | ||
test_ios_script: DESTINATION_OS=13.4 DESTINATION_NAME="iPhone 11 Pro" make test-ios || (echo System Log; tail -n 1000 /var/log/system.log; echo Simulator Logs; cat ~/Library/Logs/CoreSimulator/*/system.log; echo Xcode Crash Logs; find ~/Library/Developer/Xcode/DerivedData/ -iname *.crash -print -exec cat {} \;) | ||
|
||
task: | ||
name: macOS SPM | ||
osx_instance: | ||
image: mojave-xcode-11 | ||
image: catalina-xcode-11.3.1 | ||
xcode_version_script: | ||
- xcode-select -p | ||
- sudo xcode-select -s /Applications/Xcode.app/Contents/Developer | ||
- xcodebuild -version | ||
swift_version_script: swift --version | ||
build_script: swift build |
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
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,12 +1,12 @@ | ||
github "Hearst-DD/ObjectMapper" "3.5.1" | ||
github "Quick/Nimble" "v8.0.4" | ||
github "Hearst-DD/ObjectMapper" "3.5.2" | ||
github "Quick/Nimble" "v8.0.7" | ||
github "Quick/Quick" "v2.2.0" | ||
github "SwiftyBeaver/SwiftyBeaver" "1.8.1" | ||
github "httpswift/swifter" "70355c4e414e93a0589a0d5d4ade342534bbab38" | ||
github "kif-framework/KIF" "v3.7.8" | ||
github "kishikawakatsumi/KeychainAccess" "v3.2.0" | ||
github "mxcl/PromiseKit" "6.11.0" | ||
github "pubnub/objective-c" "v4.10.1" | ||
github "realm/realm-cocoa" "v3.19.0" | ||
github "SwiftyBeaver/SwiftyBeaver" "1.9.0" | ||
github "httpswift/swifter" "fbffd02ab42306be4748ec4b8ad58e6c77e09e84" | ||
github "kif-framework/KIF" "v3.7.9" | ||
github "kishikawakatsumi/KeychainAccess" "v3.2.1" | ||
github "mxcl/PromiseKit" "6.13.1" | ||
github "pubnub/objective-c" "v4.13.1" | ||
github "realm/realm-cocoa" "v3.21.0" | ||
github "tjboneman/NSPredicate-MongoDB-Adaptor" "fce0cd01913bd4393db0c3dd33404cb7e9ebec88" | ||
github "weichsel/ZIPFoundation" "0.9.9" | ||
github "weichsel/ZIPFoundation" "0.9.11" |
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
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
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
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
Oops, something went wrong.