mirror of
https://github.com/octoleo/syncthing.git
synced 2024-12-22 19:08:58 +00:00
build: Attempt cross compilation for ~all targets, allow it to fail
This commit is contained in:
parent
3adfe2f91f
commit
e136d11dce
7
.github/workflows/build-syncthing.yaml
vendored
7
.github/workflows/build-syncthing.yaml
vendored
@ -349,9 +349,6 @@ jobs:
|
|||||||
| grep -v js/ \
|
| grep -v js/ \
|
||||||
| grep -v linux/ \
|
| grep -v linux/ \
|
||||||
| grep -v nacl/ \
|
| grep -v nacl/ \
|
||||||
| grep -v openbsd/arm\$ \
|
|
||||||
| grep -v openbsd/arm64 \
|
|
||||||
| grep -v openbsd/mips \
|
|
||||||
| grep -v plan9/ \
|
| grep -v plan9/ \
|
||||||
| grep -v windows/ \
|
| grep -v windows/ \
|
||||||
)
|
)
|
||||||
@ -359,7 +356,9 @@ jobs:
|
|||||||
for plat in $platforms; do
|
for plat in $platforms; do
|
||||||
goos="${plat%/*}"
|
goos="${plat%/*}"
|
||||||
goarch="${plat#*/}"
|
goarch="${plat#*/}"
|
||||||
go run build.go -goos "$goos" -goarch "$goarch" tar
|
if ! go run build.go -goos "$goos" -goarch "$goarch" tar ; then
|
||||||
|
echo "*** $plat failed ***"
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
env:
|
env:
|
||||||
CGO_ENABLED: "0"
|
CGO_ENABLED: "0"
|
||||||
|
Loading…
Reference in New Issue
Block a user