-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.travis.yml
35 lines (32 loc) · 956 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
34
35
language: generic
matrix:
include:
- os: osx
osx_image: xcode11.4
script:
- swift test
- swift build --disable-sandbox -c release
- ./.build/release/rocket 1.0.0 --rocket-file .test.yml
- os: osx
osx_image: xcode12
script:
- swift test
- swift build --disable-sandbox -c release
- ./.build/release/rocket 1.0.0 --rocket-file .test.yml
- os: osx
osx_image: xcode12u
script:
- swift test
- swift build --disable-sandbox -c release
- ./.build/release/rocket 1.0.0 --rocket-file .test.yml
- os: linux
language: generic
sudo: required
dist: trusty
install:
- eval "$(curl -sL https://swiftenv.fuller.li/install.sh)"
- swiftenv global 5.1
script:
- swift test
- swift build --disable-sandbox -c release
- ./.build/release/rocket 1.0.0 --rocket-file .test.yml