mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 07:35:40 +00:00
.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:
+2
-2
@@ -19,7 +19,7 @@ tasks:
|
|||||||
- test_gio: |
|
- test_gio: |
|
||||||
export EGL_PLATFORM=surfaceless # for headless tests
|
export EGL_PLATFORM=surfaceless # for headless tests
|
||||||
cd gio
|
cd gio
|
||||||
go test -v ./...
|
go test ./...
|
||||||
- test_cmd: |
|
- test_cmd: |
|
||||||
cd gio/cmd
|
cd gio/cmd
|
||||||
go test -v ./...
|
go test ./...
|
||||||
|
|||||||
+5
-5
@@ -42,8 +42,8 @@ tasks:
|
|||||||
- test_gio: |
|
- test_gio: |
|
||||||
cd gio
|
cd gio
|
||||||
export EGL_PLATFORM=surfaceless # for headless tests
|
export EGL_PLATFORM=surfaceless # for headless tests
|
||||||
go test -race -v ./...
|
go test -race ./...
|
||||||
GOOS=windows go test -exec=wine -v ./...
|
GOOS=windows go test -exec=wine ./...
|
||||||
GOOS=js GOARCH=wasm go build -o /dev/null ./...
|
GOOS=js GOARCH=wasm go build -o /dev/null ./...
|
||||||
- install_chrome: |
|
- install_chrome: |
|
||||||
curl -s https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
|
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
|
sudo apt install -y google-chrome-stable
|
||||||
- test_cmd: |
|
- test_cmd: |
|
||||||
cd gio/cmd
|
cd gio/cmd
|
||||||
go test -v ./...
|
go test ./...
|
||||||
go test -race -v ./...
|
go test -race ./...
|
||||||
cd gogio # since we need -modfile to point at the parent directory
|
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: |
|
- install_jdk8: |
|
||||||
curl -so jdk.deb "https://cdn.azul.com/zulu/bin/zulu8.42.0.21-ca-jdk8.0.232-linux_amd64.deb"
|
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
|
sudo apt install -y -f ./jdk.deb
|
||||||
|
|||||||
+2
-2
@@ -15,7 +15,7 @@ tasks:
|
|||||||
./make.bash
|
./make.bash
|
||||||
- test_gio: |
|
- test_gio: |
|
||||||
cd gio
|
cd gio
|
||||||
go test -v ./...
|
go test ./...
|
||||||
- test_cmd: |
|
- test_cmd: |
|
||||||
cd gio/cmd
|
cd gio/cmd
|
||||||
go test -v ./...
|
go test ./...
|
||||||
|
|||||||
Reference in New Issue
Block a user