Skip to content

Commit

Permalink
chore(CI): Update rustc
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Jun 14, 2019
1 parent f1e3163 commit feaad8d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
sudo: false
language: rust
rust:
- 1.31.0 # oldest supported version
- stable
- beta
- nightly
matrix:
include:
- env: RUSTFMT
rust: 1.31.0 # `stable`: Locking down for consistent behavior
rust: 1.35.0 # `stable`: Locking down for consistent behavior
install:
- rustup component add rustfmt
script:
- cargo fmt -- --check
- env: RUSTFLAGS="-D warnings"
rust: 1.31.0 # `stable`: Locking down for consistent behavior
rust: 1.35.0 # `stable`: Locking down for consistent behavior
install:
script:
- cargo check --tests
- env: CLIPPY
rust: 1.31.0 # `stable`: Locking down for consistent behavior
rust: 1.35.0 # `stable`: Locking down for consistent behavior
install:
- rustup component add clippy
script:
Expand Down
1 change: 1 addition & 0 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ fn main() {
for record in &records {
let value = format!(r#""{}""#, &record[1]);
builder.entry(unicase::UniCase(&record[0]), &value);
break;
}
builder.build(&mut file).unwrap();
write!(&mut file, ";\n").unwrap();
Expand Down

0 comments on commit feaad8d

Please # to comment.