From 1d9b62b1c1e4a2ac31b8ef9b361b2392d8e2d412 Mon Sep 17 00:00:00 2001 From: Guillaume Lambert Date: Wed, 31 Mar 2021 12:29:17 +0200 Subject: [PATCH] Fix Jenkins docs-linkcheck false positives Ignore static contents and IETF URLs often not reachable from Jenkins minions because of hosting connectivity issues. Signed-off-by: Guillaume Lambert Change-Id: Ib338dd95058a55502825177be68acb5c39195faf --- docs/conf.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 6ffd5b063..082c43918 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -65,6 +65,11 @@ linkcheck_ignore = [ 'https://webchat.freenode.net/#', # Ignore google docs anchors 'https://docs.google.com/presentation/d/1bnwj8CrFGo5KekONYSeIHySdkoXZiewJxkHcZjXnzkQ/edit#slide=id.g17d8ae4d92_0_137', + # Ignore local static contents + '../_static/OpenDaylight-Technical-Charter-LFN-Projects-LLC-FINAL.pdf', + # Ignore IETF URLs often not reachable from Jenkins minions + # because of hosting connectivity issues + '^http[s]://tools.ietf.org/html/.*', ] linkcheck_timeout = 300 -- 2.36.6