diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml index 9fe08e97..1816b703 100644 --- a/.builds/freebsd.yml +++ b/.builds/freebsd.yml @@ -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 ./... diff --git a/.builds/linux.yml b/.builds/linux.yml index 5e89ae1c..0b5bdddc 100644 --- a/.builds/linux.yml +++ b/.builds/linux.yml @@ -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 diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml index 7ebf020d..757e80f0 100644 --- a/.builds/openbsd.yml +++ b/.builds/openbsd.yml @@ -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 ./...