diff --git a/.travis.yml b/.travis.yml index 12ef495fcc..dae224e1a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/ci.sh b/ci.sh new file mode 100755 index 0000000000..6fe90aaf9e --- /dev/null +++ b/ci.sh @@ -0,0 +1,6 @@ +#!/bin/bash +set -ex + +./fmt.sh -- --write-mode=diff +./test.sh +cargo build --target=x86_64-unknown-redox