blob: 290b4c5a593789fe864b9b6ccb00f9d46613a7c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
#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
source /opt/virtualenv/jenkins-job-builder/bin/activate
jenkins-jobs test -o job_output jjb/
|