Although in util/api-checker.sh we create textual reports, we don't
preserve them in job artifacts, but we should.
We don't want to keep all HTML pages present in the project root, but
just those produced by ABI checker.
(cherry picked from commit
b5ccf95b0a2f3f0946f0aae8fde1fd4401e4c25e)
- util/api-checker.sh . refbind
artifacts:
paths:
- - "*.html"
+ - "*-lib*.html"
+ - "*-lib*.txt"
- "abi-*.dump"
expire_in: "1 week"
only:
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')