forked from TheM4hd1/SwiftyInsta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
16 lines (14 loc) · 895 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
os: osx
language: swift
osx_image: xcode11
before_install:
- pod init
- curl https://gist.githubusercontent.com/sbertix/2e8a618086e1bc50ba57e2cfc443a1ab/raw/0a2fc9776d415198ae709c38c4bc832c6856086c/SwiftyInsta.podfile --output Podfile
- pod install --repo-update
script:
- set -o pipefail
- swiftlint
- xcodebuild clean build -workspace SwiftyInsta.xcworkspace -scheme 'SwiftyInsta.iOS' -sdk 'iphonesimulator' -configuration Debug | xcpretty -c
- xcodebuild clean build -workspace SwiftyInsta.xcworkspace -scheme 'SwiftyInsta.macOS' -sdk 'macosx' -configuration Debug | xcpretty -c
- xcodebuild clean build -workspace SwiftyInsta.xcworkspace -scheme 'SwiftyInsta.tvOS' -sdk 'appletvsimulator' -configuration Debug | xcpretty -c
- xcodebuild clean build -workspace SwiftyInsta.xcworkspace -scheme 'SwiftyInsta.watchOS' -sdk 'watchsimulator' -configuration Debug | xcpretty -c