From 065cf7ffdfe4ef794935ec9016c4cb22869ab373 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Thu, 20 Aug 2020 23:19:32 +0200 Subject: [PATCH 1/2] No longer allow_failure on pypy3 Gitlab CI --- .gitlab-ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0c713285..c6ce8b4a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -183,8 +183,6 @@ PyPy3 POCL: - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh - ". ./build-and-test-py-project.sh" - allow_failure: true - tags: - pypy - pocl -- GitLab From 8020abee33c61e2be636d214d924034a4d3dc3c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Fri, 21 Aug 2020 00:14:38 +0200 Subject: [PATCH 2/2] Comment out K40 job outage --- .gitlab-ci.yml | 37 ++++++++++++++++++------------------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c6ce8b4a..b86e7795 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -47,25 +47,24 @@ Python 3 Titan V: reports: junit: test/pytest.xml -Python 3 K40: - script: - - export PY_EXE=python3 - - export PYOPENCL_TEST=nvi:k40 - - export EXTRA_INSTALL="pybind11 numpy mako" - - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh - - ". ./build-and-test-py-project.sh" - tags: - - python3 - - nvidia-k40 - except: - - tags - - # https://github.com/illinois-scicomp/machine-shop-maintenance/issues/7 - allow_failure: true - - artifacts: - reports: - junit: test/pytest.xml +# https://github.com/illinois-scicomp/machine-shop-maintenance/issues/7 + +# Python 3 K40: +# script: +# - export PY_EXE=python3 +# - export PYOPENCL_TEST=nvi:k40 +# - export EXTRA_INSTALL="pybind11 numpy mako" +# - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh +# - ". ./build-and-test-py-project.sh" +# tags: +# - python3 +# - nvidia-k40 +# except: +# - tags +# +# artifacts: +# reports: +# junit: test/pytest.xml Python 3 AMD GPU: allow_failure: true -- GitLab