.builds: don't pass -v to go test

Some tests are so verbose they hide the relevant error messages.

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2021-03-28 14:16:05 +02:00
parent 17ba8e28af
commit c2e0910c8b
3 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -19,7 +19,7 @@ tasks:
- test_gio: |
export EGL_PLATFORM=surfaceless # for headless tests
cd gio
go test -v ./...
go test ./...
- test_cmd: |
cd gio/cmd
go test -v ./...
go test ./...
+5 -5
View File
@@ -42,8 +42,8 @@ tasks:
- test_gio: |
cd gio
export EGL_PLATFORM=surfaceless # for headless tests
go test -race -v ./...
GOOS=windows go test -exec=wine -v ./...
go test -race ./...
GOOS=windows go test -exec=wine ./...
GOOS=js GOARCH=wasm go build -o /dev/null ./...
- install_chrome: |
curl -s https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
@@ -52,10 +52,10 @@ tasks:
sudo apt install -y google-chrome-stable
- test_cmd: |
cd gio/cmd
go test -v ./...
go test -race -v ./...
go test ./...
go test -race ./...
cd gogio # since we need -modfile to point at the parent directory
GOFLAGS=-modfile=../go.local.mod go test -v
GOFLAGS=-modfile=../go.local.mod go test
- install_jdk8: |
curl -so jdk.deb "https://cdn.azul.com/zulu/bin/zulu8.42.0.21-ca-jdk8.0.232-linux_amd64.deb"
sudo apt install -y -f ./jdk.deb
+2 -2
View File
@@ -15,7 +15,7 @@ tasks:
./make.bash
- test_gio: |
cd gio
go test -v ./...
go test ./...
- test_cmd: |
cd gio/cmd
go test -v ./...
go test ./...