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:
parent
997e0b302a
commit
325c0adf69
@ -1,7 +1,7 @@
|
|||||||
[alias]
|
[alias]
|
||||||
xtask = "run --package xtask --"
|
xtask = "run --package xtask --"
|
||||||
ruma-clippy = """\
|
ruma-clippy = """\
|
||||||
clippy --workspace --all-targets --all-features --quiet -- \
|
clippy --workspace --all-targets --all-features -- \
|
||||||
-W rust_2018_idioms \
|
-W rust_2018_idioms \
|
||||||
-W semicolon_in_expressions_from_macros \
|
-W semicolon_in_expressions_from_macros \
|
||||||
-W unused_import_braces \
|
-W unused_import_braces \
|
||||||
|
@ -39,19 +39,17 @@ impl CiTask {
|
|||||||
|
|
||||||
fn build_msrv(&self) -> xshell::Result<()> {
|
fn build_msrv(&self) -> xshell::Result<()> {
|
||||||
let _p = pushd("crates/ruma")?;
|
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<()> {
|
fn build_stable(&self) -> xshell::Result<()> {
|
||||||
vec![
|
vec![
|
||||||
cmd!("rustup run stable cargo test --workspace --quiet").run(),
|
cmd!("rustup run stable cargo test --workspace").run(),
|
||||||
cmd!("rustup run stable cargo test -p ruma-identifiers --no-default-features --quiet")
|
cmd!("rustup run stable cargo test -p ruma-identifiers --no-default-features").run(),
|
||||||
.run(),
|
cmd!("rustup run stable cargo test -p ruma-identifiers --all-features").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").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").run(),
|
||||||
cmd!("rustup run stable cargo check -p ruma-client --no-default-features --quiet")
|
cmd!("rustup run stable cargo check -p ruma-client --all-features").run(),
|
||||||
.run(),
|
|
||||||
cmd!("rustup run stable cargo check -p ruma-client --all-features --quiet").run(),
|
|
||||||
]
|
]
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.collect()
|
.collect()
|
||||||
@ -61,11 +59,8 @@ impl CiTask {
|
|||||||
vec![
|
vec![
|
||||||
cmd!("rustup run nightly cargo fmt -- --check").run(),
|
cmd!("rustup run nightly cargo fmt -- --check").run(),
|
||||||
cmd!("rustup run nightly cargo ruma-clippy -D warnings").run(),
|
cmd!("rustup run nightly cargo ruma-clippy -D warnings").run(),
|
||||||
cmd!(
|
cmd!("rustup run nightly cargo clippy -p ruma-client --all-targets -- -D warnings")
|
||||||
"rustup run nightly cargo clippy -p ruma-client
|
.run(),
|
||||||
--all-targets --quiet -- -D warnings"
|
|
||||||
)
|
|
||||||
.run(),
|
|
||||||
]
|
]
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.collect()
|
.collect()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user