From 639d3b247f3dc6244113430d0685266539b34bc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Sun, 15 Nov 2020 19:25:03 +0100 Subject: [PATCH] Set Matplotlib backend in Gitlab GPU CI --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0527b39..86b9e5c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,6 +18,7 @@ Python 3 POCL Titan V: script: - export PYOPENCL_TEST=portable:titan - CONDA_ENVIRONMENT=.test-conda-env-py3.yml + - export MPLBACKEND=Agg - 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: @@ -32,6 +33,7 @@ Python 3 POCL Titan X: script: - export PYOPENCL_TEST=portable:titan - CONDA_ENVIRONMENT=.test-conda-env-py3.yml + - export MPLBACKEND=Agg - 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: @@ -46,6 +48,7 @@ Python 3 POCL K40: script: - export PYOPENCL_TEST=portable:k40 - CONDA_ENVIRONMENT=.test-conda-env-py3.yml + - export MPLBACKEND=Agg - 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: -- GitLab