-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
11 lines (10 loc) · 885 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
language: objective-c
osx_image: xcode8
script:
- xcodebuild -project SalesTaxes.xcodeproj -scheme SalesTaxesTests test -sdk iphonesimulator GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES -destination 'platform=iOS Simulator,name=iPhone 7,OS=latest'
- xcodebuild -project SalesTaxes.xcodeproj -scheme SalesTaxes-Debug clean build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
- xcodebuild -project SalesTaxes.xcodeproj -scheme SalesTaxesSwift-Debug clean build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
- xcodebuild -project SalesTaxes.xcodeproj -scheme SalesTaxes-Release clean build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
- xcodebuild -project SalesTaxes.xcodeproj -scheme SalesTaxesSwift-Release clean build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
after_success:
- bash <(curl -s https://codecov.io/bash)