소스 검색

Use Rust nightly, disable email notifications

Jeremy Soller 7 년 전
부모
커밋
bf41415c8b
1개의 변경된 파일9개의 추가작업 그리고 5개의 파일을 삭제
  1. 9 5
      .travis.yml

+ 9 - 5
.travis.yml

@@ -1,9 +1,13 @@
 language: rust
+rust:
+  - nightly
 cache: cargo
 before_script:
-- rustup component add rustfmt-preview
-- rustup target add x86_64-unknown-redox
+  - rustup component add rustfmt-preview
+  - rustup target add x86_64-unknown-redox
 script:
-- bash ./fmt.sh -- --write-mode=diff
-- bash ./test.sh
-- cargo build --target=x86_64-unknown-redox
+  - bash ./fmt.sh -- --write-mode=diff
+  - bash ./test.sh
+  - cargo build --target=x86_64-unknown-redox
+notifications:
+  email: false