AdGuardHome/ci.sh

36 lines
673 B
Bash
Raw Normal View History

2019-10-02 13:41:14 +01:00
#!/bin/bash
set -e
set -x
2019-10-02 14:23:17 +01:00
echo "Starting AdGuard Home CI script"
# Print the current directory contents
ls -la
2019-10-02 13:41:14 +01:00
# Check versions and current directory
node -v
npm -v
go version
golangci-lint --version
# Run linter
golangci-lint run
# Run tests
go test -race -v -bench=. -coverprofile=coverage.txt -covermode=atomic ./...
# Make
make clean
make build/static/index.html
make
if [[ -z "$(git status --porcelain)" ]]; then
# Working directory clean
echo "Git status is clean"
else
echo "Git status is not clean and contains uncommited changes"
echo "Please make sure there are no changes"
exit 1
fi
2019-10-02 14:23:17 +01:00
echo "AdGuard Home CI script finished successfully"