Skip to content
This repository was archived by the owner on Jul 10, 2023. It is now read-only.

Commit 5f50fc4

Browse files
author
bors-servo
authored
Auto merge of #237 - servo:cleanup, r=nox
Some cleanup. <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/rust-layers/237) <!-- Reviewable:end -->
2 parents bf88ea0 + 853be27 commit 5f50fc4

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@ before_install:
1414
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install gcc-4.7 g++-4.7; fi
1515
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.7 20; fi
1616
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.7 20; fi
17+
1718
rust:
1819
- nightly
19-
env:
20-
- FEATURES=""
21-
- FEATURES="plugins"
20+
- beta
21+
2222
script:
23-
- cargo build --features "$FEATURES"
24-
- cargo test --features "$FEATURES"
23+
- cargo test
24+
- ([ $TRAVIS_RUST_VERSION != nightly ] || cargo test --features plugins)
25+
2526
notifications:
2627
webhooks: http://build.servo.org:54856/travis

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "layers"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
authors = ["The Servo Project Developers"]
66
license = "MIT/Apache-2.0"
77

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
#![crate_name = "layers"]
1111
#![crate_type = "rlib"]
1212

13-
#![feature(iter_arith)]
1413
#![cfg_attr(feature = "plugins", feature(custom_attribute))]
1514
#![cfg_attr(feature = "plugins", feature(custom_derive))]
1615
#![cfg_attr(feature = "plugins", feature(plugin))]

0 commit comments

Comments
 (0)