Commit 107ceede authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Examples runner: allow conda build

parent 935377ad
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -6,8 +6,13 @@ if [ "$PY_EXE" == "" ]; then
  PY_EXE=python${py_version}
fi

curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-py-project.sh
if test "$USE_CONDA_BUILD" == "1"; then
  curl -L -O -k "${ci_support}/build-py-project-within-miniconda.sh"
  source build-py-project-within-miniconda.sh
else
  curl -L -O -k "${ci_support}/build-py-project.sh"
  source build-py-project.sh
fi

curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/run-examples.sh
source run-examples.sh