mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-11-27 15:01:22 +08:00
34 lines
1.1 KiB
Bash
Executable File
34 lines
1.1 KiB
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# To use this script as a Git hook:
|
|
#
|
|
# cd .git/hooks # from repo root
|
|
# ln -s ../../tools/pre-push .
|
|
|
|
if ! git diff HEAD --quiet; then
|
|
if git diff --cached --quiet; then
|
|
echo 'Local changes exist and none is staged; stashing.'
|
|
git stash
|
|
trap 'r=$?; git stash pop; trap - EXIT; exit $r' EXIT INT HUP TERM
|
|
else
|
|
echo 'Local changes exist and some are staged; not stashing.'
|
|
echo 'Make a commit, stash all the changes, or unstage all the changes.'
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
# go.work is needed for gopls to function correctly when working on Go code
|
|
# inside website/ from VS Code (and possibly other development environments),
|
|
# but it changes the behavior of "go test", so force disable it.
|
|
export GOWORK=off
|
|
make test all-checks
|
|
make -C website check-rellinks
|
|
# A quick cross compilation test. Not exhaustive, but will catch most issues.
|
|
if test `go env GOOS` = windows; then
|
|
GOOS=linux GOARCH=amd64 go build ./...
|
|
GOOS=linux GOARCH=amd64 go test -o NUL -c ./...
|
|
else
|
|
GOOS=windows GOARCH=amd64 go build ./...
|
|
GOOS=windows GOARCH=amd64 go test -o /dev/null -c ./...
|
|
fi
|