- xmllint --noout --nonet `git ls-files '*.xml' '*.docbook'`
- xmllint --noout --nonet --html `git ls-files '*.html'`
- sh util/check-win32util-configure
+ - sh util/check-categories.sh
needs: []
artifacts:
paths:
tr '[A-Z]' '[a-z]' |
tr _ - | sed 's/^tat$/trust-anchor-telemetry/' | sort -u`
list2=`sed -n 's;.*<para><command>\(.*\)</command></para>;\1;p' doc/arm/logging-categories.xml | tr '[A-Z]' '[a-z]' | sort -u`
+status=0
for i in $list1
do
ok=no
if test $ok = no
then
echo "$i missing from documentation."
+ status=1
fi
done
for i in $list2
if test $ok = no
then
echo "$i not in code."
+ status=1
fi
done
+exit $status