Compare commits
2 Commits
e332148440
...
94e0eeaecb
Author | SHA1 | Date |
---|---|---|
b1ek | 94e0eeaecb | |
b1ek | 3e2e5e3f57 |
28
ci.sh
28
ci.sh
|
@ -2,17 +2,23 @@
|
||||||
|
|
||||||
rm -f $(find . -type f | grep -E ^\./bshchk.\*)
|
rm -f $(find . -type f | grep -E ^\./bshchk.\*)
|
||||||
|
|
||||||
GOOS=linux GOARCH=386 go build -o "bshchk.linux.i386" -ldflags "-s -w -X main.version=$VERSION" . &
|
ver=$(git describe --tags 2> /dev/null)
|
||||||
GOOS=linux GOARCH=amd64 go build -o "bshchk.linux.amd64" -ldflags "-s -w -X main.version=$VERSION" . &
|
|
||||||
GOOS=linux GOARCH=arm64 go build -o "bshchk.linux.arm64" -ldflags "-s -w -X main.version=$VERSION" . &
|
|
||||||
GOOS=linux GOARCH=arm go build -o "bshchk.linux.arm" -ldflags "-s -w -X main.version=$VERSION" . &
|
|
||||||
|
|
||||||
GOOS=windows GOARCH=386 go build -o "bshchk.windows.i386.exe" -ldflags "-s -w -X main.version=$VERSION" . &
|
GOOS=linux GOARCH=386 go build -o "bshchk.linux.i386" -ldflags "-s -w -X main.version=$ver" . &
|
||||||
GOOS=windows GOARCH=amd64 go build -o "bshchk.windows.amd64.exe" -ldflags "-s -w -X main.version=$VERSION" . &
|
GOOS=linux GOARCH=amd64 go build -o "bshchk.linux.amd64" -ldflags "-s -w -X main.version=$ver" . &
|
||||||
GOOS=windows GOARCH=arm64 go build -o "bshchk.windows.arm64.exe" -ldflags "-s -w -X main.version=$VERSION" . &
|
GOOS=linux GOARCH=arm64 go build -o "bshchk.linux.arm64" -ldflags "-s -w -X main.version=$ver" . &
|
||||||
GOOS=windows GOARCH=arm go build -o "bshchk.windows.arm" -ldflags "-s -w -X main.version=$VERSION" . &
|
GOOS=linux GOARCH=arm go build -o "bshchk.linux.arm" -ldflags "-s -w -X main.version=$ver" . &
|
||||||
|
|
||||||
GOOS=darwin GOARCH=amd64 go build -o "bshchk.darwin.amd64" -ldflags "-s -w -X main.version=$VERSION" . &
|
wait
|
||||||
GOOS=darwin GOARCH=arm64 go build -o "bshchk.darwin.arm64" -ldflags "-s -w -X main.version=$VERSION" . &
|
|
||||||
|
GOOS=windows GOARCH=386 go build -o "bshchk.windows.i386.exe" -ldflags "-s -w -X main.version=$ver" . &
|
||||||
|
GOOS=windows GOARCH=amd64 go build -o "bshchk.windows.amd64.exe" -ldflags "-s -w -X main.version=$ver" . &
|
||||||
|
GOOS=windows GOARCH=arm64 go build -o "bshchk.windows.arm64.exe" -ldflags "-s -w -X main.version=$ver" . &
|
||||||
|
GOOS=windows GOARCH=arm go build -o "bshchk.windows.arm" -ldflags "-s -w -X main.version=$ver" . &
|
||||||
|
|
||||||
|
wait
|
||||||
|
|
||||||
|
GOOS=darwin GOARCH=amd64 go build -o "bshchk.darwin.amd64" -ldflags "-s -w -X main.version=$ver" . &
|
||||||
|
GOOS=darwin GOARCH=arm64 go build -o "bshchk.darwin.arm64" -ldflags "-s -w -X main.version=$ver" . &
|
||||||
|
|
||||||
wait
|
wait
|
||||||
|
|
1
rdc.sh
1
rdc.sh
|
@ -17,6 +17,7 @@ if (( ${#non_ok[@]} != 0 )); then
|
||||||
>&2 echo " From which, these are missing:"
|
>&2 echo " From which, these are missing:"
|
||||||
>&2 echo " > $non_ok"
|
>&2 echo " > $non_ok"
|
||||||
>&2 echo "Make sure that those are installed and are present in \$PATH."
|
>&2 echo "Make sure that those are installed and are present in \$PATH."
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
unset non_ok{{if .UnsetDeps}}
|
unset non_ok{{if .UnsetDeps}}
|
||||||
|
|
Loading…
Reference in New Issue