diff options
author | Aric Gardner <agardner@linuxfoundation.org> | 2015-07-09 16:15:01 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2015-07-09 16:15:01 +0000 |
commit | 59487d0f870a4846a9bd67ef38752eacf9b232f8 (patch) | |
tree | 52c5f96172800b7911bf85c7916913b125913d85 /jjb/verify-releng | |
parent | 3c31d5f82fc07b7cfbc0681bced1fc619b6e29fa (diff) | |
parent | 556536cdbfcca74f7556a050c5399ae71e580f7a (diff) |
Merge "Ensure that only ASCII characters make it into the jobs JIRA:OCTO-105"
Diffstat (limited to 'jjb/verify-releng')
-rwxr-xr-x | jjb/verify-releng | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/jjb/verify-releng b/jjb/verify-releng new file mode 100755 index 000000000..6e980e79b --- /dev/null +++ b/jjb/verify-releng @@ -0,0 +1,17 @@ +#!/bin/bash + +source /opt/virtualenv/jenkins-job-builder/bin/activate +jenkins-jobs test jjb/ + + +#test for non-ascii characters, these can pass the test and end up breaking things in production +for x in $(find . -name *\.yml); do + + if LC_ALL=C grep -q '[^[:print:][:space:]]' "$x"; then + echo "file "$x" contains non-ascii characters" + exit 1 + fi + +done + +echo "all .yml files are ASCII only" |