diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6aec221eb7cc479dbd745250a9757bebf2a84491..3a6d8fe58b1172d16b1cbd361de7d97183e85bf1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -99,6 +99,28 @@ Python 3 Intel Examples: except: - tags +Python 3 Conda: + tags: + - docker-runner + script: | + sudo apt-get update + sudo apt-get install openmpi-bin libopenmpi-dev + 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 + +Python 3 Conda Examples: + tags: + - docker-runner + script: | + sudo apt-get update + sudo apt-get install openmpi-bin libopenmpi-dev + CONDA_ENVIRONMENT=.test-conda-env-py3.yml + curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/ci-support.sh + . ci-support.sh + build_py_project_in_conda_env + run_examples + Documentation: script: - EXTRA_INSTALL="pybind11 numpy"