From 710ec1280a630b6ddf1d2b10b23372f9cf9fbb12 Mon Sep 17 00:00:00 2001 From: Yochem van Rosmalen Date: Mon, 23 Mar 2026 14:19:35 +0100 Subject: [PATCH] test: ignore kuwasha.net url #38438 Problem: Flagged by `make lintdocurls` on GitHub actions. Doesn't reproduce locally, so probably blocks the action runner. Solution: Ignore it. --- src/gen/gen_help_html.lua | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/gen/gen_help_html.lua b/src/gen/gen_help_html.lua index 76027cad44..2a3c6ce389 100644 --- a/src/gen/gen_help_html.lua +++ b/src/gen/gen_help_html.lua @@ -130,8 +130,12 @@ local exclude_invalid_urls = { ['http://wiki.services.openoffice.org/wiki/Dictionaries'] = 'spell.txt', ['http://www.adapower.com'] = 'ft_ada.txt', ['http://www.jclark.com/'] = 'quickfix.txt', - ['https://cacm.acm.org/research/a-look-at-the-design-of-lua/'] = 'faq.txt', -- blocks GHA? - ['https://linux.die.net/man/2/poll'] = 'luvref.txt', -- blocks GHA? + + -- Can't be accessed by GitHub runners: + ['https://cacm.acm.org/research/a-look-at-the-design-of-lua/'] = 'faq.txt', + ['https://linux.die.net/man/2/poll'] = 'luvref.txt', + ['https://www.kuwasha.net'] = 'uganda.txt', + ['https://www.kuwasha.net/'] = 'uganda.txt', } -- Deprecated, brain-damaged files that I don't care about.