Remove --quiet flags

They were useful on builds.sr.ht but for local running of CI commands
it's nice to have some progress indication.
This commit is contained in:
Jonas Platte 2021-05-06 14:17:38 +02:00
parent 997e0b302a
commit 325c0adf69
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67
2 changed files with 10 additions and 15 deletions

View File

@ -1,7 +1,7 @@
[alias]
xtask = "run --package xtask --"
ruma-clippy = """\
clippy --workspace --all-targets --all-features --quiet -- \
clippy --workspace --all-targets --all-features -- \
-W rust_2018_idioms \
-W semicolon_in_expressions_from_macros \
-W unused_import_braces \

View File

@ -39,19 +39,17 @@ impl CiTask {
fn build_msrv(&self) -> xshell::Result<()> {
let _p = pushd("crates/ruma")?;
cmd!("rustup run {MSRV} cargo build --features full --quiet").run()
cmd!("rustup run {MSRV} cargo build --features full").run()
}
fn build_stable(&self) -> xshell::Result<()> {
vec![
cmd!("rustup run stable cargo test --workspace --quiet").run(),
cmd!("rustup run stable cargo test -p ruma-identifiers --no-default-features --quiet")
.run(),
cmd!("rustup run stable cargo test -p ruma-identifiers --all-features --quiet").run(),
cmd!("rustup run stable cargo test -p ruma-client-api --all-features --quiet").run(),
cmd!("rustup run stable cargo check -p ruma-client --no-default-features --quiet")
.run(),
cmd!("rustup run stable cargo check -p ruma-client --all-features --quiet").run(),
cmd!("rustup run stable cargo test --workspace").run(),
cmd!("rustup run stable cargo test -p ruma-identifiers --no-default-features").run(),
cmd!("rustup run stable cargo test -p ruma-identifiers --all-features").run(),
cmd!("rustup run stable cargo test -p ruma-client-api --all-features").run(),
cmd!("rustup run stable cargo check -p ruma-client --no-default-features").run(),
cmd!("rustup run stable cargo check -p ruma-client --all-features").run(),
]
.into_iter()
.collect()
@ -61,10 +59,7 @@ impl CiTask {
vec![
cmd!("rustup run nightly cargo fmt -- --check").run(),
cmd!("rustup run nightly cargo ruma-clippy -D warnings").run(),
cmd!(
"rustup run nightly cargo clippy -p ruma-client
--all-targets --quiet -- -D warnings"
)
cmd!("rustup run nightly cargo clippy -p ruma-client --all-targets -- -D warnings")
.run(),
]
.into_iter()