mirror of
https://github.com/sobolevn/git-secret
synced 2024-11-06 15:20:36 +00:00
7a730e4a4f
* perform lint/shellcheck tests on travis mac builds * move osx builds first in travis * install shellcheck on macos * show if the lint test passed or failed * don't have travis install ruby 2.6 on osx for now
31 lines
688 B
Bash
31 lines
688 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
function run_kitchen_tests {
|
|
ansible --version
|
|
ruby --version
|
|
python --version
|
|
pip --version
|
|
bundler --version
|
|
bundle show
|
|
bundle exec kitchen test --test-base-path="$PWD/.ci/integration" $KITCHEN_REGEXP
|
|
}
|
|
|
|
# Only running `make test` on standard (non-docker) builds,
|
|
# since it is called inside the docker container anyway.
|
|
|
|
# Local builds:
|
|
if [[ "$GITSECRET_DIST" == "brew" ]]; then
|
|
make lint && echo 'make lint: test passed' || echo 'make lint: test failed'
|
|
make test
|
|
fi
|
|
if [[ "$GITSECRET_DIST" == "windows" ]]; then
|
|
make test
|
|
fi
|
|
|
|
# Linux:
|
|
if [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ -n "$KITCHEN_REGEXP" ]]; then
|
|
run_kitchen_tests
|
|
fi
|