Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/doc-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
builder-command:
- 'spelling . spelling -W --keep-going'
# -vv is too verbose and makes it hard to read logs
- 'linkcheck -v . links'
- 'linkcheck -vv . links'
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@a90bcbc6539c36a85cdfeb73f7e2f433735f215b # v2.15.0
Expand All @@ -52,5 +52,9 @@ jobs:
# TODO: find way to split up dependencies
run: python -m pip install -r doc/requirements.txt
- name: Run builder
id: builder
run: sphinx-build -b ${{ matrix.builder-command }}
working-directory: doc
- if: ${{ !cancelled() && steps.builder.outcome == 'failure' }}
run: sphinx-build --bug-report
working-directory: doc
3 changes: 2 additions & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,4 +269,5 @@ def __getattr__(cls, name):
"https://docs.aerospike.com/server/guide/security/index.html"
]

linkcheck_timeout = 120
linkcheck_timeout = 30
linkcheck_retries = 4
Loading