forked from locka99/opcua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
44 lines (36 loc) · 882 Bytes
/
.travis.yml
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
34
35
36
37
38
39
40
41
42
43
44
sudo: required
language: rust
rust:
- stable
- nightly
before_install:
- export RUST_BACKTRACE=1
matrix:
allow_failures:
- rust: nightly
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
- cmake
- gcc
- libiberty-dev
sources:
- kalakris-cmake
before_script:
- export PATH=$HOME/.cargo/bin:$PATH
- cargo install cargo-update || echo "cargo-update already installed"
- cargo install cargo-travis || echo "cargo-travis already installed"
- cargo install-update -a # update outdated cached binaries
script:
- cargo test --all -- --nocapture
#- cd integration
#- cargo test -- --test-threads=1 --ignored
after_success:
- cd ./types && cargo coveralls
- cd ../core && cargo coveralls
- cd ../server && cargo coveralls
- cd ../client && cargo coveralls