mirror of
https://github.com/sobolevn/git-secret
synced 2024-11-06 15:20:36 +00:00
31 lines
1.0 KiB
Bash
31 lines
1.0 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# Docker-baised builds:
|
|
if [[ ! -z "$DOCKER_DIST" ]]; then
|
|
TEMPLATE="sobolevn/git-secret-docker-$DOCKER_DIST"
|
|
# Passing the `TRAVIS_COMMIT` into the container:
|
|
COMMAND="if [ ! -z ${TRAVIS_COMMIT} ]; then git checkout ${TRAVIS_COMMIT}; fi; make test-${GITSECRET_DIST}-ci"
|
|
|
|
# This will run the full intergration check inside the `docker` container:
|
|
# see `test-deb-ci` and `test-rpm-ci` in `Makefile`
|
|
docker run "$TEMPLATE" /bin/bash -c "$COMMAND"
|
|
docker ps -a
|
|
fi
|
|
|
|
# Local builds:
|
|
if [[ "$GITSECRET_DIST" == "brew" ]] || [[ "$GITSECRET_DIST" == "brew" ]]; then
|
|
# Only running `make test` on standard (non-docker) build,
|
|
# since it is called inside the docker container anyway.
|
|
make test
|
|
fi
|
|
|
|
if [[ ! -z "$(command -v shellcheck)" ]]; then
|
|
# This means, that `shellcheck` does exist, so run it:
|
|
echo 'running lint'
|
|
find src utils -type f -name '*.sh' -print0 | xargs -0 -I {} shellcheck {}
|
|
# TODO: add tests to lint
|
|
# see: https://github.com/koalaman/shellcheck/issues/709
|
|
fi
|