forked from koher/swift-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
28 lines (28 loc) · 1.09 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
27
28
matrix:
include:
- os: osx
language: objective-c
osx_image: xcode9.4
script:
- set -o pipefail
- xcodebuild test -scheme EasyImagy-macOS -configuration Debug | xcpretty -c
- xcodebuild test -scheme EasyImagy-iOS -configuration Debug -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone X" | xcpretty -c
- xcodebuild test -scheme EasyImagy-tvOS -configuration Debug -sdk appletvsimulator -destination "platform=tvOS Simulator,name=Apple TV 4K" | xcpretty -c
- xcodebuild build -scheme EasyImagy-watchOS -configuration Debug -sdk watchsimulator -destination "platform=watchOS Simulator,name=Apple Watch Series 3 - 38mm" | xcpretty -c
- os: osx
language: generic
osx_image: xcode9.4
script:
- swift --version
- swift build
- swift test
- os: linux
language: generic
sudo: required
env: SWIFT_VERSION=4.1
install:
- eval "$(curl -sL https://swiftenv.fuller.li/install.sh)"
script:
- swift --version
- swift build
- swift test