Merge branch 'mnowak/abi-check-artifacts' into 'master'

Collect TXT and HTML reports produced by ABI checker

See merge request isc-projects/bind9!3501
This commit is contained in:
Michal Nowak 2020-05-15 09:28:42 +00:00
commit 89d7d9aff7
2 changed files with 3 additions and 2 deletions

View file

@ -1299,7 +1299,8 @@ abi-check:
- util/api-checker.sh . refbind
artifacts:
paths:
- "*.html"
- "*-lib*.html"
- "*-lib*.txt"
- "abi-*.dump"
expire_in: "1 week"
only:

View file

@ -80,4 +80,4 @@ while read -r HTMLREPORT; do
TXTREPORT="${HTMLREPORT/.html/.txt}"
echo " w3m: ${HTMLREPORT} -> ${TXTREPORT}"
w3m -dump -cols 75 -O ascii -T text/html "${HTMLREPORT}" > "${TXTREPORT}"
done < <(find . -maxdepth 1 -name '*.html')
done < <(find . -maxdepth 1 -name '*-lib*.html')