mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-25 13:24:22 +00:00
update issues; allow stdsimd to fail
This commit is contained in:
parent
88a2c48ce3
commit
3b65e15989
@ -31,10 +31,9 @@ matrix:
|
||||
- env: INTEGRATION=rand
|
||||
- env: INTEGRATION=rust-clippy
|
||||
- env: INTEGRATION=rust-semverver
|
||||
- env: INTEGRATION=stdsimd
|
||||
- env: INTEGRATION=tempdir
|
||||
allow_failures:
|
||||
# Need to run an lalrpop build step before testing?
|
||||
# See: https://github.com/rust-lang-nursery/rustfmt/issues/2789
|
||||
- env: INTEGRATION=chalk
|
||||
# PR sent
|
||||
- env: INTEGRATION=crater
|
||||
@ -44,6 +43,8 @@ matrix:
|
||||
- env: INTEGRATION=rust-clippy
|
||||
# Doesn't build
|
||||
- env: INTEGRATION=rust-semverver
|
||||
# See: https://github.com/rust-lang-nursery/rustfmt/issues/2787
|
||||
- env: INTEGRATION=stdsimd
|
||||
|
||||
before_script:
|
||||
- |
|
||||
|
@ -27,7 +27,7 @@ cargo fmt -- --version
|
||||
# * `cargo test -all` still passes (formatting did not break the build)
|
||||
function check_fmt {
|
||||
touch rustfmt.toml
|
||||
cargo fmt --all -v 2>&1 | tee rustfmt_output
|
||||
cargo fmt --all -v |& tee rustfmt_output
|
||||
if [[ ${PIPESTATUS[0]} != 0 ]]; then
|
||||
cat rustfmt_output
|
||||
return 1
|
||||
@ -45,7 +45,7 @@ function check_fmt {
|
||||
if [[ $? != 0 ]]; then
|
||||
return 1
|
||||
fi
|
||||
cargo fmt --all -- --check 2>&1 | tee rustfmt_check_output
|
||||
cargo fmt --all -- --check |& tee rustfmt_check_output
|
||||
if [[ ${PIPESTATUS[0]} != 0 ]]; then
|
||||
cat rustfmt_check_output
|
||||
return 1
|
||||
|
Loading…
Reference in New Issue
Block a user