Skip to content

Commit e865604

Browse files
committed
Do not run cargo build in verbose mode
I find the extra output of little help, and it actually makes it harder to see where exactly builds break.
1 parent 533dcac commit e865604

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/release.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ main() {
6868
sed -i s,native-tls,rustls-tls,g client/Cargo.toml
6969
# TODO(jmmv): Should enable --features=sdl but need to figure out how to cross-build
7070
# for it.
71-
( cd cli && cargo build --release --verbose --features=rpi )
71+
( cd cli && cargo build --release --features=rpi )
7272
rm -f .cargo/config
7373

7474
cp ./target/armv7-unknown-linux-gnueabihf/release/endbasic "${distname}"
@@ -77,7 +77,7 @@ main() {
7777
;;
7878

7979
macos*)
80-
( cd cli && cargo build --release --verbose --features=sdl )
80+
( cd cli && cargo build --release --features=sdl )
8181

8282
cp ./target/release/endbasic "${distname}/endbasic.bin"
8383
cp .github/workflows/macos-launcher.sh "${distname}/endbasic"
@@ -98,7 +98,7 @@ main() {
9898
;;
9999

100100
windows*)
101-
( cd cli && LIB="$(pwd)/libs" cargo build --release --verbose --features=sdl )
101+
( cd cli && LIB="$(pwd)/libs" cargo build --release --features=sdl )
102102

103103
cp ./target/release/endbasic.exe "${distname}"
104104
cp dlls/* "${distname}"
@@ -108,7 +108,7 @@ main() {
108108
;;
109109

110110
*)
111-
( cd cli && cargo build --release --verbose --features=sdl )
111+
( cd cli && cargo build --release --features=sdl )
112112

113113
cp ./target/release/endbasic "${distname}"
114114

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
runs-on: ubuntu-latest
9999
steps:
100100
- uses: actions/checkout@v2
101-
- run: cd std && cargo build --no-default-features --verbose
101+
- run: cd std && cargo build --no-default-features
102102

103103
rust-compat:
104104
runs-on: ubuntu-latest
@@ -114,7 +114,7 @@ jobs:
114114
- run: sudo apt update
115115
- run: sudo apt install libsdl2-dev libsdl2-ttf-dev
116116
# On old toolchains, we only care about being able to build.
117-
- run: cd cli && cargo build --verbose
117+
- run: cd cli && cargo build
118118
# And because we do this primarily for Raspbian, make sure the
119119
# relevant features build there too.
120-
- run: cd cli && cargo build --features=rpi,sdl --verbose
120+
- run: cd cli && cargo build --features=rpi,sdl

0 commit comments

Comments
 (0)