-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path.travis.yml
26 lines (24 loc) · 1.05 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
env:
global:
- LC_CTYPE=en_US.UTF-8
matrix:
include:
- os: osx
language: objective-c
osx_image: xcode10.2
script:
- set -o pipefail
- xcodebuild test -workspace DIKit.xcworkspace -scheme DIGenKit -configuration Release ENABLE_TESTABILITY=YES | xcpretty -c
- xcodebuild build -workspace DIKit.xcworkspace -scheme DIKit -configuration Release | xcpretty -c
- xcodebuild build -workspace DIKit.xcworkspace -scheme DIKit -configuration Release -sdk iphonesimulator | xcpretty -c
- xcodebuild build -workspace DIKit.xcworkspace -scheme DIKit -configuration Release -sdk watchsimulator | xcpretty -c
- xcodebuild build -workspace DIKit.xcworkspace -scheme DIKit -configuration Release -sdk appletvsimulator | xcpretty -c
- xcodebuild build -workspace DIKit.xcworkspace -scheme Example -configuration Release -sdk iphonesimulator | xcpretty -c
- os: osx
language: generic
osx_image: xcode10.2
script:
- swift build
- swift test
notifications:
email: false