mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
ci: remove outdated version checks from cross compilation script
This commit is contained in:
parent
c19e6a71b2
commit
1a483c0e43
1 changed files with 0 additions and 6 deletions
6
.github/workflows/cross-compile.sh
vendored
6
.github/workflows/cross-compile.sh
vendored
|
@ -2,17 +2,11 @@
|
|||
|
||||
set -e
|
||||
|
||||
GOVERSION=$(go version | cut -d " " -f 3 | cut -b 3-6)
|
||||
|
||||
for dist in $(go tool dist list); do
|
||||
goos=$(echo $dist | cut -d "/" -f1)
|
||||
goarch=$(echo $dist | cut -d "/" -f2)
|
||||
# cross-compiling for android is a pain...
|
||||
if [[ "$goos" == "android" ]]; then continue; fi
|
||||
# Go 1.14 lacks syscall.IPV6_RECVTCLASS
|
||||
if [[ $GOVERSION == "1.14" && $goos == "darwin" && $goarch == "arm" ]]; then continue; fi
|
||||
# darwin/arm64 requires Cgo for Go < 1.16
|
||||
if [[ $GOVERSION != "1.16" && "$goos" == "darwin" && $goarch == "arm64" ]]; then continue; fi
|
||||
# iOS builds require Cgo, see https://github.com/golang/go/issues/43343
|
||||
# Cgo would then need a C cross compilation setup. Not worth the hassle.
|
||||
if [[ "$goos" == "ios" ]]; then continue; fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue