forked from GEOSwift/GEOSwift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
51 lines (48 loc) · 1.31 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
cache:
directories:
- Carthage
- swift
jobs:
include:
- name: iOS - xcodebuild
os: osx
osx_image: xcode11.3
language: minimal
env: PLATFORM=iOS
SCHEME=GEOSwift-iOS
SDK=iphonesimulator13.2
DESTINATION="platform=iOS Simulator,OS=13.3,name=iPhone 11"
WORKSPACE=GEOSwift.xcworkspace
RUN_CODECOV=true
- name: tvOS - xcodebuild
os: osx
osx_image: xcode11.3
language: minimal
env: PLATFORM=tvOS
SCHEME=GEOSwift-tvOS
SDK=appletvsimulator13.2
DESTINATION="platform=tvOS Simulator,OS=13.3,name=Apple TV"
WORKSPACE=GEOSwift.xcworkspace
- name: macOS - xcodebuild
os: osx
osx_image: xcode11.3
language: minimal
env: PLATFORM=macOS
SCHEME=GEOSwift-macOS
SDK=macosx10.15
DESTINATION="platform=OS X"
WORKSPACE=GEOSwift.xcworkspace
- name: Ubuntu 18.04 - SPM
os: linux
dist: bionic
language: minimal
env: USE_SPM=true
- name: macOS - SPM
os: osx
osx_image: xcode11.3
language: minimal
env: USE_SPM=true
before_install: travis_wait 30 ./scripts/travis_before_install.sh
script: ./scripts/travis_script.sh
after_success: ./scripts/travis_after_success.sh