-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
executable file
·58 lines (51 loc) · 1.65 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
52
53
54
55
56
57
58
matrix:
include:
- name: "Linux Swift 3.1.1"
os: linux
language: generic
dist: trusty
sudo: required
env:
- SWIFT_BRANCH=swift-3.1.1-release
- SWIFT_VERSION=swift-3.1.1-RELEASE
install:
- mkdir swift
- curl https://swift.org/builds/$SWIFT_BRANCH/ubuntu1404/$SWIFT_VERSION/$SWIFT_VERSION-ubuntu14.04.tar.gz -s | tar -xz -C swift
- export PATH="$(pwd)/swift/$SWIFT_VERSION-ubuntu14.04/usr/bin:$PATH"
- name: "Linux Swift 4.1.3"
os: linux
language: generic
dist: trusty
sudo: required
env:
- SWIFT_BRANCH=swift-4.1.3-release
- SWIFT_VERSION=swift-4.1.3-RELEASE
install:
- mkdir swift
- curl https://swift.org/builds/$SWIFT_BRANCH/ubuntu1404/$SWIFT_VERSION/$SWIFT_VERSION-ubuntu14.04.tar.gz -s | tar -xz -C swift
- export PATH="$(pwd)/swift/$SWIFT_VERSION-ubuntu14.04/usr/bin:$PATH"
- name: "Linux Swift 4.2"
os: linux
language: generic
dist: trusty
sudo: required
env:
- SWIFT_BRANCH=swift-4.2-release
- SWIFT_VERSION=swift-4.2-RELEASE
install:
- mkdir swift
- curl https://swift.org/builds/$SWIFT_BRANCH/ubuntu1404/$SWIFT_VERSION/$SWIFT_VERSION-ubuntu14.04.tar.gz -s | tar -xz -C swift
- export PATH="$(pwd)/swift/$SWIFT_VERSION-ubuntu14.04/usr/bin:$PATH"
- name: "Mac Xcode 9"
os: osx
osx_image: xcode9.4
language: generic
sudo: required
- name: "Mac Xcode 10"
os: osx
osx_image: xcode10
language: generic
sudo: required
script:
- swift package reset
- swift build