-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
16 lines (14 loc) · 931 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
language: objective-c
osx_image: xcode12
install:
- gem install xcpretty
- sudo gem install cocoapods -v 1.9.3
- pod setup
- pod update
- pod install
script:
- pod lib lint
- xcodebuild clean build test -workspace NetworkUtils.xcworkspace -scheme NetworkUtils_Tests -destination 'platform=iOS Simulator,name=iPhone 8,OS=14.0' -sdk iphonesimulator14.0 CODE_SIGNING_REQUIRED=NO -configuration Debug ONLY_ACTIVE_ARCH=YES ENABLE_TESTABILITY=YES -enableCodeCoverage YES | xcpretty -c
- bash <(curl -s https://codecov.io/bash) -cF unit -J NetworkUtils
- xcodebuild clean build test -workspace NetworkUtils.xcworkspace -scheme NetworkUtils_Example -destination 'platform=iOS Simulator,name=iPhone 8,OS=14.0' -sdk iphonesimulator14.0 CODE_SIGNING_REQUIRED=NO -configuration Debug ONLY_ACTIVE_ARCH=YES ENABLE_TESTABILITY=YES -enableCodeCoverage YES | xcpretty -c
- bash <(curl -s https://codecov.io/bash) -cF ui -J NetworkUtils