From f5b81924d2006df0e4b61fbc63489e7848f9aa03 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Mon, 20 Jul 2020 13:20:59 -0500 Subject: [PATCH] Add Conda and Conda Examples jobs on Gitlab CI --- .gitlab-ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6aec221e..3a6d8fe5 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" -- GitLab