aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJakob Borg <jakob@kastelo.net>2023-05-03 10:54:28 +0200
committerJakob Borg <jakob@kastelo.net>2023-05-09 10:01:57 +0000
commite136d11dce15bb268943c5334db88d3a9884f29f (patch)
tree03e4437c1b5ade5e4bf35ffd1a6f647bea0499d8 /.github
parent3adfe2f91f6c3e170f70d04c76b6bcbcee31db26 (diff)
downloadsyncthing-e136d11dce15bb268943c5334db88d3a9884f29f.tar.gz
syncthing-e136d11dce15bb268943c5334db88d3a9884f29f.zip
build: Attempt cross compilation for ~all targets, allow it to failv1.23.5-rc.1
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-syncthing.yaml7
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/build-syncthing.yaml b/.github/workflows/build-syncthing.yaml
index 7b8cc91bb..6a5c570ad 100644
--- a/.github/workflows/build-syncthing.yaml
+++ b/.github/workflows/build-syncthing.yaml
@@ -349,9 +349,6 @@ jobs:
| grep -v js/ \
| grep -v linux/ \
| grep -v nacl/ \
- | grep -v openbsd/arm\$ \
- | grep -v openbsd/arm64 \
- | grep -v openbsd/mips \
| grep -v plan9/ \
| grep -v windows/ \
)
@@ -359,7 +356,9 @@ jobs:
for plat in $platforms; do
goos="${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
env:
CGO_ENABLED: "0"