mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
ci: disable cgo in build scripts
This commit is contained in:
parent
fbe0cf4156
commit
052380d65a
2 changed files with 3 additions and 1 deletions
|
@ -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]
|
||||
|
|
2
build.sh
2
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue