mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
Merge pull request #3784 from quic-go/speed-up-cross-compile
ci: speed up the cross compilation job by parallelizing
This commit is contained in:
commit
5c05143703
2 changed files with 14 additions and 18 deletions
21
.github/workflows/cross-compile.sh
vendored
21
.github/workflows/cross-compile.sh
vendored
|
@ -2,22 +2,17 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
GOVERSION=$(go version | cut -d " " -f 3 | cut -b 3-6)
|
dist="$1"
|
||||||
|
goos=$(echo "$dist" | cut -d "/" -f1)
|
||||||
|
goarch=$(echo "$dist" | cut -d "/" -f2)
|
||||||
|
|
||||||
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...
|
# cross-compiling for android is a pain...
|
||||||
if [[ "$goos" == "android" ]]; then continue; fi
|
if [[ "$goos" == "android" ]]; then exit; 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
|
# 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.
|
# Cgo would then need a C cross compilation setup. Not worth the hassle.
|
||||||
if [[ "$goos" == "ios" ]]; then continue; fi
|
if [[ "$goos" == "ios" ]]; then exit; fi
|
||||||
|
|
||||||
echo "$dist"
|
echo "$dist"
|
||||||
GOOS=$goos GOARCH=$goarch go build -o main example/main.go
|
out="main-$goos-$goarch"
|
||||||
rm main
|
GOOS=$goos GOARCH=$goarch go build -o $out example/main.go
|
||||||
done
|
rm $out
|
||||||
|
|
3
.github/workflows/cross-compile.yml
vendored
3
.github/workflows/cross-compile.yml
vendored
|
@ -19,4 +19,5 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: go build example/main.go
|
run: go build example/main.go
|
||||||
- name: Run cross compilation
|
- name: Run cross compilation
|
||||||
run: .github/workflows/cross-compile.sh
|
# run in parallel on as many cores as are available on the machine
|
||||||
|
run: go tool dist list | xargs -I % -P "$(nproc)" .github/workflows/cross-compile.sh %
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue