ci: disable cgo in build scripts

This commit is contained in:
Toby 2022-11-06 22:01:44 -08:00
parent fbe0cf4156
commit 052380d65a
2 changed files with 3 additions and 1 deletions

View file

@ -49,6 +49,8 @@ New-Item -ItemType Directory -Force -Path build
Write-Host "Starting build..." -ForegroundColor Green Write-Host "Starting build..." -ForegroundColor Green
$env:CGO_ENABLED = 0
foreach ($platform in $platforms) { foreach ($platform in $platforms) {
$env:GOOS = $platform.Split("/")[0] $env:GOOS = $platform.Split("/")[0]
$env:GOARCH = $platform.Split("/")[1] $env:GOARCH = $platform.Split("/")[1]

View file

@ -50,7 +50,7 @@ for platform in "${platforms[@]}"; do
if [ $GOOS = "windows" ]; then if [ $GOOS = "windows" ]; then
output="$output.exe" output="$output.exe"
fi fi
env GOOS=$GOOS GOARCH=$GOARCH go build -o $output -tags=gpl -ldflags "$ldflags" -trimpath ./cmd/ env GOOS=$GOOS GOARCH=$GOARCH CGO_ENABLED=0 go build -o $output -tags=gpl -ldflags "$ldflags" -trimpath ./cmd/
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "Error: failed to build $GOOS/$GOARCH" echo "Error: failed to build $GOOS/$GOARCH"
exit 1 exit 1