From 4b097f5a9b3a2cd98b6a8c34e42b5cd5dff8a812 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Tue, 29 Sep 2020 18:25:03 -0500 Subject: [PATCH 1/2] Build docs without nitpick on Gitlab CI --- .gitlab-ci.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bf0c862..f5f47b9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,12 +8,11 @@ Flake8: - tags Documentation: - script: - - EXTRA_INSTALL="numpy" - - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-docs.sh - - ". ./build-docs.sh" + script: | + EXTRA_INSTALL="numpy" + curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/ci-support.sh + . ./ci-support.sh + build_project_in_venv + build_docs --no-check tags: - python3 - only: - - master - -- GitLab From 587d1c2654a6d0042719e52993248d7b9be2cbf3 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Tue, 29 Sep 2020 18:30:40 -0500 Subject: [PATCH 2/2] Fix ci-support Giltab CI typo --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f5f47b9..804bc2e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,7 +12,7 @@ Documentation: EXTRA_INSTALL="numpy" curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/ci-support.sh . ./ci-support.sh - build_project_in_venv + build_py_project_in_venv build_docs --no-check tags: - python3 -- GitLab