-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
35 lines (35 loc) · 855 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: rust
matrix:
include:
- name: "Linux: Stable"
os: linux
dist: xenial
rust: stable
addons:
apt:
sources: [ubuntu-toolchain-r-test]
packages: [g++-4.9]
env: BUILD_MATRIX="CC=gcc-4.9 && CXX=g++-4.9"
- name: "Linux: Nightly"
os: linux
dist: xenial
rust: nightly
addons:
apt:
sources: [ubuntu-toolchain-r-test]
packages: [g++-4.9]
env: BUILD_MATRIX="CC=gcc-4.9 && CXX=g++-4.9"
- name: "OSX: Stable"
rust: stable
os: osx
osx_image: xcode9.4
env: BUILD_MATRIX="BUILD_TYPE=Debug"
- name: "Windows: Stable"
rust: stable
os: windows
env: BUILD_MATRIX="BUILD_TYPE=Debug" BUILD_TOOLCHAIN="Visual Studio 15 2017 Win64"
fast_finish: true
cache: cargo
branches:
only:
- master