aboutsummaryrefslogtreecommitdiff
path: root/bitflags/.travis.yml
blob: 9dd45c47c5845ec47b0cc4c51e08664a1860edcf (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
branches:
  except:
  - /.*(.tmp)$/

language: rust
matrix:
  include:
    # This version is tested to avoid unintentional bumping of the minimum supported Rust version
    - rust: 1.20.0
      env:
        - LABEL="msrv"
      script:
        - cargo test
    - rust: stable
      env:
        - LABEL="no-std"
      script:
        - rustup target add thumbv6m-none-eabi
        - cargo build --features example_generated --target thumbv6m-none-eabi
    - rust: nightly
      env:
        - LABEL="compiletest"
      script:
        - cargo test
        - cargo test -p test_suite --features unstable
    - rust: stable
    - rust: stable
      os: osx
    - rust: beta
  allow_failures:
    - rust: nightly

sudo: false
script:
  - cargo test --all

notifications:
  email:
    on_success: never