Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.travis.yml - github.com/windirstat/walkdir.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 214ddc4c4744a2c9bc7d86e56fb370b0bcf41401 (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
language: rust
matrix:
  include:
    - os: linux
      rust: 1.23.0
    - os: linux
      rust: stable
    - os: linux
      rust: beta
    - os: linux
      rust: nightly
    - os: osx
      rust: nightly
script:
  - cargo build --verbose
  - cargo test --verbose
  - cargo doc
  - if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
    cargo +nightly generate-lockfile -Z minimal-versions;
    cargo build --verbose;
    cargo test --verbose;
    fi
branches:
  only:
    - master