-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(workflows): added CGO_ENABLED=0 to go build
- We will use this env var setting for a release to work with alpine - Mirroring this here so the build behaviors are identical
- Loading branch information
Showing
2 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
uses: Jerome1337/[email protected] | ||
|
||
- name: Build | ||
run: go build -v ./... | ||
run: CGO_ENABLED=0 go build -v ./... | ||
|
||
- name: Test | ||
run: go test -v ./... | ||
run: CGO_ENABLED=0 go test -v ./... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters