blob: 3a77581c09cd8272138bf590b7ad1399cd40275d (
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
25
26
27
28
29
30
|
language: rust
rust:
- stable
- beta
- nightly
- 1.25.0
os:
- linux
- osx
cache:
cargo: true
timeout: 900
before_cache:
# Travis can't cache files that are not readable by "others"
- chmod -R a+r $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
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo ldconfig; fi
- cd ..
- export PATH="$PATH:$HOME/.cargo/bin"
script:
- travis_wait cargo build --all-features
- cargo test --all-features
|