From 611fe8794ba3664ef5aaeda8020f76c13c2e27a3 Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Tue, 9 Feb 2021 12:51:28 +0800 Subject: [PATCH] ci: move doc build jobs into build_doc stage to run in parallel --- .gitlab-ci.yml | 1 + .gitlab/ci/docs.yml | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 62e2105b9c..66b2a464a9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,7 @@ stages: - pre_check - build - assign_test + - build_doc - host_test - target_test - test_deploy diff --git a/.gitlab/ci/docs.yml b/.gitlab/ci/docs.yml index 3292caebf6..0961222355 100644 --- a/.gitlab/ci/docs.yml +++ b/.gitlab/ci/docs.yml @@ -40,12 +40,13 @@ check_docs_gh_links: - ${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 gh-linkcheck -# stage: build +# stage: build_doc +# Add this stage to let the build_docs job run in parallel with build .build_docs_build_stage_template: extends: - .build_docs_template - .rules:build:docs - stage: build + stage: build_doc needs: - job: check_docs_lang_sync artifacts: false