From 797c3cc71e673ffc12754a0b2e3cf5c7ce6fdd72 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 13 Sep 2020 20:11:28 -0500 Subject: [PATCH 1/2] Put back doc upload into Gitlab CI job --- .gitlab-ci.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a617b85a..fc73df2c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -45,12 +45,13 @@ Python 3 K40: - tags Documentation: - script: - - EXTRA_INSTALL="numpy mako" - - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/ci-support.sh - - ". ./ci-support.sh" - - build_py_project_in_venv - - build_docs --no-check + script: | + EXTRA_INSTALL="numpy mako" + curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/ci-support.sh + . ./ci-support.sh + build_py_project_in_venv + build_docs --no-check + maybe_upload_docs tags: - python3 - - nvidia-titan-x + - linux -- GitLab From 0845166930f84c3721c9cd1c5bce3162e35ad74a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Mon, 14 Sep 2020 19:07:03 +0200 Subject: [PATCH 2/2] Run doc job on runner with CUDA --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fc73df2c..6addd033 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -54,4 +54,5 @@ Documentation: maybe_upload_docs tags: - python3 - - linux + # needs CUDA headers to compile + - nvidia-titan-x -- GitLab