File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,11 @@ runs:
2727 go-version : ${{ steps.get-go-version.outputs.version }}
2828 cache : true
2929
30- - name : Install libwebp-dev
30+ - name : Install system build deps
3131 shell : bash
3232 run : |
3333 sudo apt-get update
34- sudo apt-get install -y libwebp-dev make
34+ sudo apt-get install -y build-essential libwebp-dev make
3535
3636 - name : One-time reset retagged lumera checksums
3737 if : ${{ inputs.bust_lumera_retag == 'true' }}
Original file line number Diff line number Diff line change 2323 run : go mod tidy
2424
2525 - name : Run unit tests
26- run : go test $(go list ./... | grep -v '/tests') -v
26+ run : CGO_ENABLED=1 go test $(go list ./... | grep -v '/tests') -v
2727
2828 integration-tests :
2929 name : integration-tests
4242 run : go mod tidy
4343
4444 - name : Run integration tests
45- run : go test -v ./tests/integration/...
45+ run : CGO_ENABLED=1 go test -v ./tests/integration/...
4646
4747 cascade-e2e-tests :
4848 name : cascade-e2e-tests
You can’t perform that action at this time.
0 commit comments