-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
277 changed files
with
12,874 additions
and
3,169 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 |
---|---|---|
|
@@ -31,7 +31,7 @@ mb.log | |
mb.pid | ||
|
||
# Cocoapods | ||
Pods/ | ||
# Pods/ | ||
|
||
# Carthage | ||
Carthage/ | ||
|
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,17 +1,53 @@ | ||
language: objective-c | ||
osx_image: xcode11.1 | ||
osx_image: xcode11.2 | ||
|
||
env: | ||
matrix: | ||
- TEST_PLATFORM="platform=iOS Simulator,OS=13.1,name=iPhone 8" | ||
global: | ||
secure: H45yyUlB0cXQrzTTcnmD3WrkCyqjUzaop2jHgmBF3bm8ue4XOcTWKDSDcAN39SG0FUeDC7GdDCtWAc3VCpLwN++5IznAnvBuZSGgxQ2lCxWMhdTtXtOWU2mivgVvs+uldS7/TuVlOjZ7inrTgetl+jgFjenwESOGIIZwn7SXpPo= | ||
- secure: H45yyUlB0cXQrzTTcnmD3WrkCyqjUzaop2jHgmBF3bm8ue4XOcTWKDSDcAN39SG0FUeDC7GdDCtWAc3VCpLwN++5IznAnvBuZSGgxQ2lCxWMhdTtXtOWU2mivgVvs+uldS7/TuVlOjZ7inrTgetl+jgFjenwESOGIIZwn7SXpPo= | ||
- BUILD_DEST="platform=iOS Simulator,OS=13.2,name=iPhone 8" | ||
- BUILD_PROJECT_LIB="-project Snowplow.xcodeproj" | ||
- BUILD_SCHEME_LIB="-scheme Snowplow-iOS" | ||
- BUILD_WORKSPACE_OBJC_DEMO="-workspace SnowplowDemo.xcworkspace" | ||
- BUILD_SCHEME_OBJC_DEMO="-scheme SnowplowDemo" | ||
- BUILD_WORKSPACE_SWIFT_DEMO="-workspace SnowplowSwiftDemo.xcworkspace" | ||
- BUILD_PROJECT_SWIFT_DEMO="-project SnowplowSwiftDemo.xcodeproj" | ||
- BUILD_SCHEME_SWIFT_DEMO="-scheme SnowplowSwiftDemo" | ||
|
||
rvm: | ||
- 2.3.7 | ||
|
||
before_install: | ||
- gem install slather | ||
- gem install xcpretty -N --no-document | ||
- gem install cocoapods -v '1.5.3' | ||
install: | ||
- ./.travis/install.sh | ||
script: ./.travis/test.sh | ||
after_success: slather | ||
- gem install slather | ||
- gem install xcpretty -N --no-document | ||
- gem install cocoapods -v '1.8.4' | ||
|
||
jobs: | ||
include: | ||
- name: "Test Snowplow framework [iOS]" | ||
install: | ||
- carthage bootstrap --platform iOS | ||
script: | ||
- set -o pipefail && xcodebuild -sdk iphonesimulator -destination "${BUILD_DEST}" ${BUILD_PROJECT_LIB} ${BUILD_SCHEME_LIB} clean test | xcpretty | ||
after_success: slather | ||
|
||
- name: "Test Snowplow ObjC demo app [iOS]" | ||
install: | ||
- cd Examples/SnowplowDemo | ||
- pod update | ||
script: | ||
- set -o pipefail && xcodebuild -sdk iphonesimulator -destination "${BUILD_DEST}" ${BUILD_WORKSPACE_OBJC_DEMO} ${BUILD_SCHEME_OBJC_DEMO} clean build | xcpretty | ||
|
||
- name: "Test Snowplow Swift demo app [iOS] using Cocoapods" | ||
install: | ||
- cd Examples/SnowplowSwiftCocoapodsDemo | ||
- pod update | ||
script: | ||
- set -o pipefail && xcodebuild -sdk iphonesimulator -destination "${BUILD_DEST}" ${BUILD_WORKSPACE_SWIFT_DEMO} ${BUILD_SCHEME_SWIFT_DEMO} clean build | xcpretty | ||
|
||
- name: "Test Snowplow Swift demo app [iOS] using Carthage" | ||
install: | ||
- cd Examples/SnowplowSwiftCarthageDemo | ||
- ./generateCartfile.sh | ||
- carthage update --platform ios | ||
script: | ||
- set -o pipefail && xcodebuild -sdk iphonesimulator -destination "${BUILD_DEST}" ${BUILD_PROJECT_SWIFT_DEMO} ${BUILD_SCHEME_SWIFT_DEMO} clean build | xcpretty |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,5 +1,5 @@ | ||
# Reachability.swift | ||
github "ashleymills/Reachability.swift" ~> 4.3 | ||
github "ashleymills/Reachability.swift" ~> 4.3.1 | ||
|
||
# FMDB | ||
github "ccgus/fmdb" ~> 2.7 | ||
github "ccgus/fmdb" ~> 2.6 |
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,5 @@ | ||
# Stub library for testing | ||
github "luisobo/Nocilla" ~> 0.11.0 | ||
github "luisobo/Nocilla" == 0.11.0 | ||
|
||
# objc-iglu-client | ||
github "snowplow/iglu-objc-client" "feature/carthage" |
File renamed without changes.
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
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
Oops, something went wrong.