From da3c04fe427695343e635be1fc4c515fd4d5c9cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Tue, 22 Sep 2020 07:55:42 +0200 Subject: [PATCH 1/2] K40 Gitlab CI job no longer allowed to fail --- .gitlab-ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6addd033..5556ec94 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -35,9 +35,6 @@ Python 3 K40: - "export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH" - ". ./build-and-test-py-project.sh" - # https://github.com/illinois-scicomp/machine-shop-maintenance/issues/7 - allow_failure: true - tags: - python3 - nvidia-k40 -- GitLab From 8d6116cb1eb5a7c0009e211ba5c5bc6a421f141b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Wed, 23 Sep 2020 02:47:45 +0200 Subject: [PATCH 2/2] Disable Titan V Gitlab CI for now --- .gitlab-ci.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5556ec94..710ad647 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,19 +12,19 @@ Python 3 Titan X: except: - tags -Python 3 Titan V: - script: - - py_version=3 - - EXTRA_INSTALL="numpy mako" - - echo "CUDADRV_LIB_DIR = ['/usr/lib/x86_64-linux-gnu/nvidia/current']" > siteconf.py - - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh - - "export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH" - - ". ./build-and-test-py-project.sh" - tags: - - python3 - - nvidia-titan-v - except: - - tags +# Python 3 Titan V: +# script: +# - py_version=3 +# - EXTRA_INSTALL="numpy mako" +# - echo "CUDADRV_LIB_DIR = ['/usr/lib/x86_64-linux-gnu/nvidia/current']" > siteconf.py +# - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh +# - "export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH" +# - ". ./build-and-test-py-project.sh" +# tags: +# - python3 +# - nvidia-titan-v +# except: +# - tags Python 3 K40: script: -- GitLab