From 538172e876540dccfced5a8c2bb20c6fc3442027 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Sat, 19 Jul 2025 14:04:30 +0200 Subject: [PATCH] docs/linkcheck: ignore vulkan.org failures as it also blocks non-browsers Part-of: --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index 61863835b74..637cf60292b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -143,6 +143,7 @@ linkcheck_ignore = [ r'https://sourceforge.net/.*', # blocking the linkcheck user-agent r'https://.*\.sourceforge\.net/.*', # blocking the linkcheck user-agent r'https://stackoverflow.com/.*', # blocking the linkcheck user-agent + r'https://(www|dev)\.vulkan\.org/.*', # blocking the linkcheck user-agent ] linkcheck_exclude_documents = [r'relnotes/.*']