-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.travis.yml
More file actions
33 lines (33 loc) · 915 Bytes
/
.travis.yml
File metadata and controls
33 lines (33 loc) · 915 Bytes
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
language: rust
matrix:
include:
- os: linux
rust: stable
env: TARGET=x86_64-unknown-linux-gnu
- os: linux
rust: beta
env: TARGET=x86_64-unknown-linux-gnu
- os: linux
rust: nightly
env: TARGET=x86_64-unknown-linux-gnu
- os: linux
rust: stable
env: TARGET=x86_64-unknown-linux-musl
- os: linux
rust: beta
env: TARGET=x86_64-unknown-linux-musl
- os: linux
rust: nightly
env: TARGET=x86_64-unknown-linux-musl
notifications:
irc:
channels:
- "chat.freenode.net#libpnet"
use_notice: true
script:
- |
git clone --depth=1 https://github.com/luigirizzo/netmap &&
cargo build --target=$TARGET --verbose &&
cargo test --target=$TARGET --verbose &&
cargo build --target=$TARGET --features netmap_with_libs &&
cargo test --target=$TARGET --features netmap_with_libs