From 0a5b6a4f267bb1d7a91afc161a1f1769329dda6c Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Fri, 25 Jun 2021 17:03:23 -0500 Subject: [PATCH] Simplify Gitlab CI config --- .gitlab-ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7b60234..f1a2d75 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,8 +38,7 @@ Python 3 POCL Examples: - test -n "$SKIP_EXAMPLES" && exit - export PY_EXE=python3 - export PYOPENCL_TEST=portable:pthread - # cython is here because pytential (for now, for TS) depends on it - - export EXTRA_INSTALL="pybind11 cython numpy mako matplotlib" + - export EXTRA_INSTALL="pybind11 numpy mako" - curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/build-py-project-and-run-examples.sh - ". ./build-py-project-and-run-examples.sh" tags: @@ -51,7 +50,6 @@ Python 3 POCL Examples: Python 3 Conda: script: | - export MPLBACKEND=Agg curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project-within-miniconda.sh . ./build-and-test-py-project-within-miniconda.sh tags: @@ -82,7 +80,7 @@ Flake8: Pylint: script: | export PY_EXE=python3 - EXTRA_INSTALL="Cython pybind11 numpy mako matplotlib scipy mpi4py oct2py" + EXTRA_INSTALL="pybind11 numpy mako" curl -L -O https://gitlab.tiker.net/inducer/ci-support/raw/master/prepare-and-run-pylint.sh . ./prepare-and-run-pylint.sh "$CI_PROJECT_NAME" examples/*.py test/test_*.py tags: -- GitLab