From aed1419c64748f31e66fe04875a6696b70761038 Mon Sep 17 00:00:00 2001 From: Jeffrey Morgan Date: Wed, 4 Dec 2024 21:22:36 -0800 Subject: [PATCH] ci: skip go build for tests (#7899) --- .github/workflows/test.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 3b50e7232..53334081c 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -243,7 +243,7 @@ jobs: $env:PATH="$gopath;$gccpath;$env:PATH" echo $env:PATH if (!(gcc --version | select-string -quiet clang)) { throw "wrong gcc compiler detected - must be clang" } - make -j 4 + make -j 4 - name: 'Build Unix Go Runners' if: ${{ ! startsWith(matrix.os, 'windows-') }} run: make -j 4 @@ -310,8 +310,7 @@ jobs: arm64) echo ARCH=arm64 ;; esac >>$GITHUB_ENV shell: bash - - run: go build - - run: go test -v ./... + - run: go test ./... patches: needs: [changes] @@ -323,4 +322,4 @@ jobs: submodules: recursive - name: Verify patches carry all the changes run: | - make apply-patches sync && git diff --compact-summary --exit-code llama \ No newline at end of file + make apply-patches sync && git diff --compact-summary --exit-code llama