aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 3d32ad0ddd8c8e9b5ad197b402c298fb28284776 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: rust
rust:
  - stable
  - beta
  - nightly
os:
  - linux
cache:
  directories:
    - $TRAVIS_BUILD_DIR/target
    - $HOME/.cargo
matrix:
  allow_failures:
    - nightly
before_script:
  - git clone git://github.com/jedisct1/libsodium.git
  - cd libsodium
  - ./autogen.sh
  - ./configure && make
  - sudo make install
  - sudo ldconfig
  - cd ..
script:
  - cargo test --all-features