diff options
| author | Christoph Blecker <admin@toph.ca> | 2017-10-24 17:54:29 -0700 |
|---|---|---|
| committer | Christoph Blecker <admin@toph.ca> | 2017-10-24 23:12:43 -0700 |
| commit | c08c4ae2f9c36cd4187b2c03cd0c06c8f310f9d0 (patch) | |
| tree | 1624e03b3fd198d6a2794807270dd70b1ba5e841 /hack/verify.sh | |
| parent | 762e5d4e5aa17487a0e04ab28ba04572b3f263d9 (diff) | |
Don't use docker by default for sig docs generator
Diffstat (limited to 'hack/verify.sh')
| -rwxr-xr-x | hack/verify.sh | 36 |
1 files changed, 21 insertions, 15 deletions
diff --git a/hack/verify.sh b/hack/verify.sh index 5f855aa7..d2833fbe 100755 --- a/hack/verify.sh +++ b/hack/verify.sh @@ -1,38 +1,44 @@ #!/bin/bash -export CRTDIR=$(pwd) -export TMPDIR=/tmp/testgendocs -mkdir $TMPDIR +CRT_DIR=$(pwd) +VERIFY_TEMP=$(mktemp -d 2>/dev/null || mktemp -d -t k8s-community.XXXXXX) +WORKING_DIR=${VERIFY_TEMP}/src/testgendocs +GOPATH=${VERIFY_TEMP} +mkdir -p ${WORKING_DIR} -cp -r sig* Makefile generator $TMPDIR +function cleanup { + rm -rf "${VERIFY_TEMP}" +} +trap cleanup EXIT -cd $TMPDIR +cp -r sig* Makefile generator ${WORKING_DIR} + +cd ${WORKING_DIR} make 1>/dev/null 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 $file $TMPDIR/$real &>/dev/null; then - echo "$file does not match $TMPDIR/$real"; +for file in $(ls ${CRT_DIR}/sig-*/README.md ${CRT_DIR}/sig-list.md); do + real=${file#$CRT_DIR/} + if ! diff -q ${file} ${WORKING_DIR}/${real} &>/dev/null; then + echo "${file} does not match ${WORKING_DIR}/${real}"; mismatches=$((mismatches+1)) fi; done -if [ $mismatches -gt "0" ]; then +if [ ${mismatches} -gt "0" ]; then echo "" - echo $break + echo ${break} noun="mismatch was" - if [ $mismatches -gt "0" ]; then + if [ ${mismatches} -gt "0" ]; then noun="mismatches were" fi - echo "$mismatches $noun detected." + echo "${mismatches} ${noun} detected." echo "Do not manually edit sig-list.md or README.md files inside the sig folders." echo "Instead make your changes to sigs.yaml and then run \`make\`."; - echo $break + echo ${break} exit 1; fi -rm -rf $TMPDIR exit 0 |
