Add local buildkite CI runner

This commit is contained in:
Grimes
2018-05-28 12:38:55 -07:00
committed by Grimes
parent b70d730b32
commit 5af922722f
3 changed files with 22 additions and 1 deletions

View File

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