1
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-16 21:56:40 -05:00

ci: remove android and plan9 from cross-build workflow (#6268)

This commit is contained in:
Mohammed Al Sahaf 2024-04-25 00:31:40 +03:00 committed by GitHub
parent c6eb186064
commit 4d6370bf92
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,14 +17,12 @@ jobs:
matrix: matrix:
goos: goos:
- 'aix' - 'aix'
- 'android'
- 'linux' - 'linux'
- 'solaris' - 'solaris'
- 'illumos' - 'illumos'
- 'dragonfly' - 'dragonfly'
- 'freebsd' - 'freebsd'
- 'openbsd' - 'openbsd'
- 'plan9'
- 'windows' - 'windows'
- 'darwin' - 'darwin'
- 'netbsd' - 'netbsd'
@ -69,7 +67,3 @@ jobs:
working-directory: ./cmd/caddy working-directory: ./cmd/caddy
run: | run: |
GOOS=$GOOS GOARCH=$GOARCH go build -tags nobadger -trimpath -o caddy-"$GOOS"-$GOARCH 2> /dev/null GOOS=$GOOS GOARCH=$GOARCH go build -tags nobadger -trimpath -o caddy-"$GOOS"-$GOARCH 2> /dev/null
if [ $? -ne 0 ]; then
echo "::warning ::$GOOS Build Failed"
exit 0
fi