Skip to content

Commit d9151c9

Browse files
Add urllib as a fallback to link checker along with curl (#115)
* Add wget as a fallback to link checker along with curl * Add urllib as a fallback to link checker along with curl * Fix CI * Fix CI * Fix CI * Fix CI * Fix CI
1 parent 7ad2e17 commit d9151c9

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

.github/workflows/pr_checks.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
run-spelling-check: true,
3939
run-complexity: false,
4040
run-doxygen: false,
41+
exclude-dirs: 'source/portable/NetworkInterface/STM32'
4142
},
4243
{
4344
repository: FreeRTOS,
@@ -47,7 +48,7 @@ jobs:
4748
run-spelling-check: true,
4849
run-complexity: false,
4950
run-doxygen: false,
50-
exclude-dirs: ethernet, drivers, FreeRTOS/Demo,
51+
exclude-dirs: 'ethernet, drivers, FreeRTOS/Demo'
5152
},
5253
{
5354
repository: backoffAlgorithm,
@@ -246,7 +247,7 @@ jobs:
246247
uses: ./spellings
247248
with:
248249
path: repo/${{ matrix.inputs.repository }}
249-
exclude-dirs: ${{ matrix.inputs.repository }}
250+
exclude-dirs: ${{ matrix.inputs.exclude-dirs }}
250251

251252
- name: "Recursive Clone: ${{ matrix.inputs.repository }}"
252253
if: success() || failure()
@@ -349,6 +350,7 @@ jobs:
349350
repository: FreeRTOS-Plus-TCP,
350351
org: FreeRTOS,
351352
branch: main,
353+
exclude-dirs: 'source/portable/NetworkInterface/STM32'
352354
},
353355
{
354356
repository: FreeRTOS,

link-verifier/verify-links.py

+11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import time
66
import argparse
77
import re
8+
import urllib
89
import subprocess
910
import requests
1011
import shutil
@@ -256,6 +257,16 @@ def access_url(url):
256257
is_broken = False
257258
status = http_status_code
258259

260+
# Use urllib as a fallback.
261+
if is_broken == True:
262+
req = urllib.request.Request(url, headers=http_headers)
263+
try:
264+
response = urllib.request.urlopen(req)
265+
is_broken = False
266+
status = response.getcode()
267+
except (urllib.error.HTTPError, urllib.error.URLError) as e:
268+
print(f"urllib: {url} error: {e}")
269+
259270
return is_broken, status
260271

261272
def test_url(url):

0 commit comments

Comments
 (0)