Move travis instructions into ci.sh

This commit is contained in:
Jeremy Soller
2018-03-08 19:14:10 -07:00
parent 620a459d93
commit fb173dc787
2 changed files with 7 additions and 3 deletions
+1 -3
View File
@@ -6,8 +6,6 @@ before_script:
- 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 ./ci.sh
notifications:
email: false
Executable
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
set -ex
./fmt.sh -- --write-mode=diff
./test.sh
cargo build --target=x86_64-unknown-redox