Avoid docker buildkite plugin, which is not supported by bkrun

This commit is contained in:
Grimes
2018-05-28 14:07:30 -07:00
committed by Grimes
parent 5af922722f
commit 26153d9919
5 changed files with 56 additions and 50 deletions

View File

@@ -5,10 +5,7 @@
cd "$(dirname "$0")/.."
set -x
docker pull koalaman/shellcheck
find -E . -name "*.sh" -not -regex ".*/(.cargo|node_modules)/.*" -print0 \
find . -name "*.sh" -not -regex ".*/.cargo/.*" -not -regex ".*/node_modules/.*" -print0 \
| xargs -0 \
docker run -w /work -v "$PWD:/work" \
koalaman/shellcheck --color=always --external-sources --shell=bash
ci/docker-run.sh koalaman/shellcheck --color=always --external-sources --shell=bash
exit 0