File tree Expand file tree Collapse file tree 2 files changed +23
-6
lines changed Expand file tree Collapse file tree 2 files changed +23
-6
lines changed Original file line number Diff line number Diff line change @@ -10,25 +10,41 @@ matrix:
10
10
allow_failures :
11
11
- rust : nightly
12
12
13
+ addons :
14
+ apt :
15
+ packages :
16
+ - libcurl4-openssl-dev
17
+ - libelf-dev
18
+ - libdw-dev
19
+ - binutils-dev
20
+
13
21
env :
14
22
global :
15
23
- secure : " SsepHEYRmW9ee3RhxPpqGuPigZINFfA/yOwUJFseQt4t+Zs90r1xdl3Q8eDfPlnvBsL7Rd0QQrFDO7JUaimVLlgQkUnrl62o0CYzkodp+qtocyAHS00W6WTqi8Y6E6KBxPshCl03dRLaySUfx5TqTLTIHkJ0G6vDW35k7hRrA3221lRphs5rrpvAZ21pqsDsNLH3HVo792L6A0kOtBa3ocw1pgHLxnBbArIViu2htUuFvY/TgsmVbAdlow0efw/xkcJ/p0/r5q7igLek6Iqk8udfRc7CktvoiFQ2vUnhtNtQu/zYll3Q7OUx5d+w5lhbzz2QINmsezBEisH9k1haL7dMviLPp0pn4WZed60KovO0Iqfgjy1utTaKvJVfNWYsgkfU8c9a/z2rcZOKwXNKQW2ptBrtVjaB9dk7eMoyuFCDZwNtKqvG+ZKmvMpun+R8mmx+buOmN8Vlf5ygIoGxz3nbEtlLYGVTXHfdXXqRkFIwtiYVJEO7SLRKT9pbx1E++ARsi2+y8bXJT4e4z0osYMq9EsiFUpw3J2gcshrgseqkB7UgCZ3SXuitJnJNfDAU3a3nwwS/JiAunZMNnC4rKUBbl7WbTB4Cpw7EgVOlCqcyyzlkNl3xabLzTFzLOfSHLTVX5FmGNsD21vBoS5/8ejftx9wuV3rGHxuO3i3+A3k="
16
24
25
+ before_script :
26
+ - |
27
+ pip install 'travis-cargo<0.2' --user &&
28
+ export PATH=$HOME/.local/bin:$PATH
29
+
17
30
script :
18
- - cargo build --verbose
19
- - cargo build --verbose --release
31
+ - |
32
+ travis-cargo build &&
33
+ travis-cargo test &&
34
+ travis-cargo bench &&
35
+ travis-cargo --only stable doc
20
36
37
+ script :
38
+ - cargo build --verbose
21
39
- cargo build --verbose --features iron-handlers
22
- - cargo build --verbose --features iron-handlers --release
23
-
24
40
- cargo test --verbose --features iron-handlers
25
- - cargo test --verbose --features iron-handlers --release
26
41
27
42
before_deploy :
28
43
- rm -rf target/package/
29
44
- cargo package --verbose
30
45
31
46
after_success : |
47
+ travis-cargo coveralls --no-sudo --verify -- --features iron-handlers
32
48
if [ "$TRAVIS_BRANCH" = master -a "$TRAVIS_PULL_REQUEST" = false -a "$TRAVIS_RUST_VERSION" = stable ]; then
33
49
set -e
34
50
Original file line number Diff line number Diff line change 2
2
3
3
> GraphQL server library for Rust
4
4
5
- ![ build status] ( https://travis-ci.org/mhallin/juniper.svg?branch=master )
5
+ [ ![ build status] ( https://img.shields.io/travis/mhallin/juniper.svg?maxAge=2592000&style=flat-square )] ( https://travis-ci.org/mhallin/juniper )
6
+ [ ![ Crates.io] ( https://img.shields.io/crates/v/juniper.svg?maxAge=2592000&style=flat-square )] ( https://crates.io/crates/juniper )
6
7
7
8
---
8
9
You can’t perform that action at this time.
0 commit comments