Unverified Commit aed1419c authored by Jeffrey Morgan's avatar Jeffrey Morgan Committed by GitHub
Browse files

ci: skip go build for tests (#7899)

parent c6c52627
...@@ -243,7 +243,7 @@ jobs: ...@@ -243,7 +243,7 @@ jobs:
$env:PATH="$gopath;$gccpath;$env:PATH" $env:PATH="$gopath;$gccpath;$env:PATH"
echo $env:PATH echo $env:PATH
if (!(gcc --version | select-string -quiet clang)) { throw "wrong gcc compiler detected - must be clang" } 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' - name: 'Build Unix Go Runners'
if: ${{ ! startsWith(matrix.os, 'windows-') }} if: ${{ ! startsWith(matrix.os, 'windows-') }}
run: make -j 4 run: make -j 4
...@@ -310,8 +310,7 @@ jobs: ...@@ -310,8 +310,7 @@ jobs:
arm64) echo ARCH=arm64 ;; arm64) echo ARCH=arm64 ;;
esac >>$GITHUB_ENV esac >>$GITHUB_ENV
shell: bash shell: bash
- run: go build - run: go test ./...
- run: go test -v ./...
patches: patches:
needs: [changes] needs: [changes]
...@@ -323,4 +322,4 @@ jobs: ...@@ -323,4 +322,4 @@ jobs:
submodules: recursive submodules: recursive
- name: Verify patches carry all the changes - name: Verify patches carry all the changes
run: | run: |
make apply-patches sync && git diff --compact-summary --exit-code llama make apply-patches sync && git diff --compact-summary --exit-code llama
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment