From 76eb29beb72c2fe7371e0495f97d4fcd2396a9fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Tue, 11 Aug 2020 16:12:52 +0200 Subject: [PATCH 1/2] Allow failure of K40 job during outage --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2f66f37..c5e39c2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -52,6 +52,7 @@ Python 3 POCL K40: - nvidia-k40 except: - tags + allow_failure: true artifacts: reports: junit: test/pytest.xml -- GitLab From fbdfe0c15a32a89725a63cad99f84f605b5a43b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Tue, 11 Aug 2020 16:41:33 +0200 Subject: [PATCH 2/2] Just disable K40 job in Gitlab CI because of outage --- .gitlab-ci.yml | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c5e39c2..a80d321 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -42,20 +42,19 @@ Python 3 POCL Titan X: reports: junit: test/pytest.xml -Python 3 POCL K40: - script: - - export PYOPENCL_TEST=portable:k40 - - CONDA_ENVIRONMENT=.test-conda-env-py3.yml - - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project-within-miniconda.sh - - ". ./build-and-test-py-project-within-miniconda.sh" - tags: - - nvidia-k40 - except: - - tags - allow_failure: true - artifacts: - reports: - junit: test/pytest.xml +# Python 3 POCL K40: +# script: +# - export PYOPENCL_TEST=portable:k40 +# - CONDA_ENVIRONMENT=.test-conda-env-py3.yml +# - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project-within-miniconda.sh +# - ". ./build-and-test-py-project-within-miniconda.sh" +# tags: +# - nvidia-k40 +# except: +# - tags +# artifacts: +# reports: +# junit: test/pytest.xml Python 3 POCL Examples: script: -- GitLab