Skip to content

Commit ac9d1b7

Browse files
committed
fix
1 parent f12360c commit ac9d1b7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/actions/setup-env/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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' }}

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
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
@@ -42,7 +42,7 @@ jobs:
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

0 commit comments

Comments
 (0)