summaryrefslogtreecommitdiffstats
path: root/jjb/verify-releng
blob: 807df1b114c0e3f4dff8976384bd153ba2c94f90 (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 jjb/