-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy path.travis.yml
33 lines (33 loc) · 915 Bytes
/
.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
29
30
31
32
33
language: swift
script:
- set -o pipefail
- xcodebuild $XCODE_ACTION
-scheme "$TRAVIS_XCODE_SCHEME"
-sdk "$XCODE_SDK"
-destination "$XCODE_DESTINATION"
matrix:
include:
- xcode_scheme: "Spine-macOS"
osx_image: xcode10.2
env:
- XCODE_ACTION=test
- XCODE_SDK=macosx
- XCODE_DESTINATION="arch=x86_64"
- xcode_scheme: "Spine-iOS"
osx_image: xcode10.2
env:
- XCODE_ACTION=test
- XCODE_SDK=iphonesimulator
- XCODE_DESTINATION="name=iPhone 7"
- xcode_scheme: "Spine-tvOS"
osx_image: xcode10.2
env:
- XCODE_ACTION=test
- XCODE_SDK=appletvsimulator
- XCODE_DESTINATION="name=Apple TV 4K"
- xcode_scheme: "Spine-watchOS"
osx_image: xcode10.2
env:
- XCODE_ACTION=build
- XCODE_SDK=watchsimulator
- XCODE_DESTINATION="name=Apple Watch - 38mm"