-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
48 lines (44 loc) · 962 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
36
37
38
39
40
41
42
43
44
45
46
47
48
language: rust
cache: cargo
branches:
only:
- master
stages:
- test
- coverage
jobs:
include:
- name: "Windows build"
os: windows
rust: stable
script:
- cargo build --verbose
- cargo test --verbose
- name: "macOS build"
os: osx
rust: stable
script:
- cargo build --verbose
- cargo test --verbose
- name: "Ubuntu build"
os: linux
dist: trusty
rust: stable
script:
- cargo build --verbose
- cargo test --verbose
- name: "Code coverage"
stage: coverage
os: linux
sudo: true
dist: trusty
addons:
apt:
packages:
- libssl-dev
rust: nightly
before_cache: RUSTFLAGS="--cfg procmacro2_semver_exempt" cargo install cargo-tarpaulin -f
script: true
after_success:
- cargo tarpaulin --out Xml
- bash <(curl -s https://codecov.io/bash)