From bfe1e2c148a31ae73cef7f12f303dfd86b92bb19 Mon Sep 17 00:00:00 2001 From: Brennan Ashton Date: Mon, 26 Oct 2020 21:22:47 -0700 Subject: [PATCH] ci: Don't fail the build due to linkcheck failure Signed-off-by: Brennan Ashton --- .github/workflows/doc.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index a6e1b4af2f2c5..5c3b6614e40d7 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -49,4 +49,5 @@ jobs: cd Documentation/ pip3 install pipenv pipenv install - pipenv run make linkcheck + # This step flakes frequently so still annotate errors but dont fail the build + pipenv run make linkcheck || true