This repository was archived by the owner on Jul 10, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,14 @@ before_install:
14
14
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install gcc-4.7 g++-4.7; fi
15
15
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.7 20; fi
16
16
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.7 20; fi
17
+
17
18
rust :
18
19
- nightly
19
- env :
20
- - FEATURES=""
21
- - FEATURES="plugins"
20
+ - beta
21
+
22
22
script :
23
- - cargo build --features "$FEATURES"
24
- - cargo test --features "$FEATURES"
23
+ - cargo test
24
+ - ([ $TRAVIS_RUST_VERSION != nightly ] || cargo test --features plugins)
25
+
25
26
notifications :
26
27
webhooks : http://build.servo.org:54856/travis
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
3
3
name = " layers"
4
- version = " 0.3.0 "
4
+ version = " 0.3.1 "
5
5
authors = [" The Servo Project Developers" ]
6
6
license = " MIT/Apache-2.0"
7
7
Original file line number Diff line number Diff line change 10
10
#![ crate_name = "layers" ]
11
11
#![ crate_type = "rlib" ]
12
12
13
- #![ feature( iter_arith) ]
14
13
#![ cfg_attr( feature = "plugins" , feature( custom_attribute) ) ]
15
14
#![ cfg_attr( feature = "plugins" , feature( custom_derive) ) ]
16
15
#![ cfg_attr( feature = "plugins" , feature( plugin) ) ]
You can’t perform that action at this time.
0 commit comments