CI: ignore result from check_doc_links

check_doc_links will always fail due to:
 * No rate limitation for requests
 * Not being able to handle github links with anchors
pull/6828/head
Marius Vikhammer 2021-03-16 11:28:26 +08:00
rodzic 7032cedca7
commit 6a46a77356
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -149,4 +149,5 @@ check_doc_links:
script:
- cd docs
- ${IDF_PATH}/tools/ci/multirun_with_pyenv.sh -p 3.6.10 pip install -r requirements.txt
- ${IDF_PATH}/tools/ci/multirun_with_pyenv.sh -p 3.6.10 ./build_docs.py -l $DOCLANG -t $DOCTGT linkcheck
# At the moment this check will always fail due to multiple known limitations, ignore result
- ${IDF_PATH}/tools/ci/multirun_with_pyenv.sh -p 3.6.10 ./build_docs.py -l $DOCLANG -t $DOCTGT linkcheck || { echo "THERE ARE ISSUES DUE TO KNOWN LIMITATIONS, PLEASE FIX THEM. Nowadays we're ignored them to pass pipeline."; true; }