summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 69b05081fae82c54760939100bcbfc5c4563c851 (plain)
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
language: rust
rust:
  - stable
  - beta
  - nightly
jobs:
  allow_failures:
    - rust: nightly
    - env: TARGET=x86_64-pc-windows-gnu # Seems to cause problems
  include:
    - os: linux
      env:
        - RUST_BACKTRACE=1
        - TARGET=x86_64-unknown-linux-gnu
    - os: osx
      env:
        - RUST_BACKTRACE=1
        - TARGET=x86_64-apple-darwin
    - os: windows
      env:
        - RUST_BACKTRACE=1
        - TARGET=x86_64-pc-windows-msvc
    - os: windows
      env:
        - RUST_BACKTRACE=1
        - TARGET=x86_64-pc-windows-gnu

before_script: rustup target add $TARGET
script:
  - cargo build --release --target $TARGET
  - cargo test --verbose --target $TARGET

# Need to cache the whole `.cargo` directory to keep .crates.toml for cargo-update to work
cache:
  directories:
    - /home/travis/.cargo

# But don't cache the cargo registry.
before_cache:
  - rm -rf /home/travis/.cargo/git
  - rm -rf /home/travis/.cargo/registry

notifications:
  email:
    on_success: never