Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ jobs:
if: "!contains(fromJSON('[\"refs/heads/beta\", \"refs/heads/release\", \"refs/heads/LTS\"]'), github.ref)"
shell: bash
run: |
export CGO_ENABLED=0
if [ "$GITHUB_EVENT_NAME" != "schedule" ]; then
LABELS="${{ join(github.event.pull_request.labels.*.name, ',') }}"
IFS=',' read -r -a TESTS <<< "$LABELS"
Expand Down
3 changes: 1 addition & 2 deletions activestate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -335,8 +335,7 @@ scripts:
standalone: true
description: Runs unit tests (not integration tests)
value: |
# Disable CGo to prevent clang warnings from crashing gotestfmt.
export CGO_ENABLED=0
$constants.SET_ENV
go test -vet=off -v `go list ./... | grep -v integration | grep -v automation | grep -v expect | grep -v state-svc | grep -v state-offline` $@
- name: integration-tests
language: bash
Expand Down
Loading