forked from kubernetes/community
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jamie Hannaford
committed
Jun 7, 2017
1 parent
3853b8d
commit dbc6df5
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
sudo: required | ||
|
||
language: bash | ||
|
||
services: | ||
- docker | ||
|
||
script: | ||
- bash ./scripts/verify.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!/bin/bash | ||
|
||
export CRTDIR=$(pwd) | ||
export TMPDIR=/tmp/testgendocs | ||
mkdir $TMPDIR | ||
|
||
cp -r sig* Makefile generator $TMPDIR | ||
|
||
cd $TMPDIR | ||
make all | ||
|
||
mismatches=0 | ||
break=$(printf "=%.0s" $(seq 1 68)) | ||
|
||
for file in $(ls $CRTDIR/sig-*/README.md $CRTDIR/sig-list.md); do | ||
real=${file#$CRTDIR/} | ||
if ! diff -q <(sed -e '/Last generated/d' $file) <(sed -e '/Last generated/d' $TMPDIR/$real) &>/dev/null; then | ||
echo "$file does not match $TMPDIR/$real"; | ||
mismatches=$((mismatches+1)) | ||
fi; | ||
done | ||
|
||
if [ $mismatches -gt "0" ]; then | ||
echo "" | ||
echo $break | ||
noun="mismatch was" | ||
if [ $mismatches -gt "0" ]; then | ||
noun="mismatches were" | ||
fi | ||
echo "$mismatches $noun detected." | ||
echo "Do not manually edit sig-list.md or anything inside the sig folders." | ||
echo "Instead make your changes to sigs.yaml and run \`make all\`."; | ||
echo $break | ||
exit 1; | ||
fi | ||
|
||
rm -rf $TMPDIR | ||
exit 0 |