File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1717 go-version : " stable"
1818
1919 - name : Test
20- run : go test -count=1 -v ./...
20+ run : CGO_ENABLED=0 go test -count=1 -v ./...
2121
2222 lint :
2323 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 5050 read -r goos goarch artifact_name <<< "$variant"
5151
5252 echo "Building for GOOS=$goos GOARCH=$goarch..."
53- GOOS=$goos GOARCH=$goarch BINPATH="out/$artifact_name" make build
53+ CGO_ENABLED=0 GOOS=$goos GOARCH=$goarch BINPATH="out/$artifact_name" make build
5454 done
5555
5656 - name : Upload Build Artifact
Original file line number Diff line number Diff line change @@ -17,4 +17,4 @@ embed: $(CHAT_SOURCES_STAMP)
1717
1818.PHONY : build
1919build : embed
20- go build -o ${BINPATH} main.go
20+ CGO_ENABLED=0 go build -o ${BINPATH} main.go
You can’t perform that action at this time.
0 commit comments