blob: b2304a05214f6ac4130aad4089ab770b79657af6 (
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
|
language: rust
rust:
- stable
- beta
- nightly
os:
- linux
- osx
cache:
cargo: true
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:
- cargo build --all-features
- cargo test --all-features
|