Skip to content
Snippets Groups Projects
Commit cca21856 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Source conda env before pip

parent 646316e9
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,11 @@ PREFIX=`pwd`/${CONDA_PREFIX} ...@@ -12,6 +12,11 @@ PREFIX=`pwd`/${CONDA_PREFIX}
run_cmd $(dirname ${0})/before_build.sh run_cmd $(dirname ${0})/before_build.sh
# Source the newly created conda environment
log_info "Running \"source ${CONDA_FOLDER}/bin/activate ${PREFIX}\"..."
source ${CONDA_FOLDER}/bin/activate ${PREFIX}
log_info "Environment ${PREFIX} activated"
# Verify where pip is installed # Verify where pip is installed
use_pip=`which pip` use_pip=`which pip`
if [ -z "${use_pip}" ]; then if [ -z "${use_pip}" ]; then
...@@ -26,4 +31,4 @@ if [ "${CI_PROJECT_NAME}" == "bob.buildout" ]; then ...@@ -26,4 +31,4 @@ if [ "${CI_PROJECT_NAME}" == "bob.buildout" ]; then
run_cmd ${use_pip} install --no-binary ":all:" zc.recipe.egg run_cmd ${use_pip} install --no-binary ":all:" zc.recipe.egg
fi fi
run_cmd ${PREFIX}/bin/pip install --use-wheel --no-index --pre dist/*.whl run_cmd ${use_pip} install --use-wheel --no-index --pre dist/*.whl
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment