From cb35cbfb581e032563992c4ea8289771f623c711 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Tue, 4 Jun 2019 18:25:05 +0200 Subject: [PATCH] ci: don't check external links because of the false positives --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 24a1b2be4a..1b81339cbb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,13 +17,15 @@ pages: # - The javasphinx output does not exist in the git, so the "open on GitLab" link is broken. # I'd like to report this as a bug, but javasphinx seems abandonned upstream. # - public/search.html and public/genindex.html are also generated. - - linkchecker --check-extern --ignore-url='.*\.css$' --ignore-url=public/java/org ../public + - linkchecker --ignore-url='.*\.css$' --ignore-url=public/java/org ../public + # From time to time, we should check external links with the + # following, but it has a lot of false positive + # - linkchecker --ignore-url='.*\.css$' --ignore-url=public/java/org --check-extern ../public artifacts: paths: - public only: - master - allow_failure: true ctest: stage: build -- 2.20.1