Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
64254c09
Unverified
Commit
64254c09
authored
Apr 07, 2026
by
Peter Eastman
Committed by
GitHub
Apr 07, 2026
Browse files
Retry error when checking for broken links (#5258)
parent
9aae4bb3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
.github/workflows/CI.yml
.github/workflows/CI.yml
+2
-2
No files found.
.github/workflows/CI.yml
View file @
64254c09
...
@@ -666,12 +666,12 @@ jobs:
...
@@ -666,12 +666,12 @@ jobs:
)")
)")
for d in api-c++ api-python developerguide userguide; do
for d in api-c++ api-python developerguide userguide; do
echo "::group:: Check ${d}"
echo "::group:: Check ${d}"
npx linkinator@3.0.0 ./${d}/ --recurse --timeout=20000 --skip "$SKIP_REGEX" --server-root ./build/api-docs --verbosity error
npx linkinator@3.0.0 ./${d}/ --recurse --timeout=20000
--retry-errors
--skip "$SKIP_REGEX" --server-root ./build/api-docs --verbosity error
((exitcode+=$?))
((exitcode+=$?))
echo "::endgroup::"
echo "::endgroup::"
done
done
echo "::group:: Check README"
echo "::group:: Check README"
npx linkinator@3.0.0 ./README.md --markdown --skip "$SKIP_REGEX"
npx linkinator@3.0.0 ./README.md --markdown
--retry-errors
--skip "$SKIP_REGEX"
((exitcode+=$?))
((exitcode+=$?))
echo "::endgroup::"
echo "::endgroup::"
exit $exitcode
exit $exitcode
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment