diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a1f8e1b460..09df20fd06 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1374,7 +1374,8 @@ abi-check: - util/api-checker.sh . refbind artifacts: paths: - - "*.html" + - "*-lib*.html" + - "*-lib*.txt" - "abi-*.dump" expire_in: "1 week" only: diff --git a/util/api-checker.sh b/util/api-checker.sh index bc0c6cd0b8..beaec3ea80 100755 --- a/util/api-checker.sh +++ b/util/api-checker.sh @@ -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')