From 052380d65a8aa87b1723aecfd9009a4999f9b9dd Mon Sep 17 00:00:00 2001 From: Toby Date: Sun, 6 Nov 2022 22:01:44 -0800 Subject: [PATCH] ci: disable cgo in build scripts --- build.ps1 | 2 ++ build.sh | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/build.ps1 b/build.ps1 index b3053d0..462beb5 100644 --- a/build.ps1 +++ b/build.ps1 @@ -49,6 +49,8 @@ New-Item -ItemType Directory -Force -Path build Write-Host "Starting build..." -ForegroundColor Green +$env:CGO_ENABLED = 0 + foreach ($platform in $platforms) { $env:GOOS = $platform.Split("/")[0] $env:GOARCH = $platform.Split("/")[1] diff --git a/build.sh b/build.sh index 64556fa..650fe03 100755 --- a/build.sh +++ b/build.sh @@ -50,7 +50,7 @@ for platform in "${platforms[@]}"; do if [ $GOOS = "windows" ]; then output="$output.exe" 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 echo "Error: failed to build $GOOS/$GOARCH" exit 1