diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index fb7e3d67..46b77a89 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -89,7 +89,7 @@ jobs: run: make wasi-libc - name: Test TinyGo shell: bash - run: make test GOTESTFLAGS="-v -short" + run: make test GOTESTFLAGS="-short" - name: Build TinyGo release tarball run: make release -j3 - name: Test stdlib packages diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 4286892c..95825358 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -99,7 +99,7 @@ jobs: scoop install wasmtime - name: Test TinyGo shell: bash - run: make test GOTESTFLAGS="-v -short" + run: make test GOTESTFLAGS="-short" - name: Build TinyGo release tarball shell: bash run: make build/release -j4 diff --git a/Makefile b/Makefile index 53cc98d2..a019a357 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ GO ?= go export GOROOT = $(shell $(GO) env GOROOT) # Flags to pass to go test. -GOTESTFLAGS ?= -v +GOTESTFLAGS ?= # md5sum binary MD5SUM = md5sum