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

Another hack for bob.buildout

parent 6ff50f96
No related branches found
No related tags found
No related merge requests found
...@@ -55,13 +55,14 @@ else ...@@ -55,13 +55,14 @@ else
log_info "Using python: ${use_python}" log_info "Using python: ${use_python}"
fi fi
PIPOPTS="--find-links ${WHEELS_REPOSITORY} --trusted-host ${WHEELS_SERVER}" # zc.recipe.egg needs some special installation instructions
# zc.recipe.egg cannot be installed via wheels, so we need this hack... if [ "${CI_PROJECT_NAME}" == "bob.buildout" ]; then
if [ "${CI_PROJECT_NAME}" != "bob.buildout" ]; then run_cmd ${use_pip} install --no-binary ":all:" zc.recipe.egg
PIPOPTS="${PIPOPTS} --pre --use-wheel --no-index"
fi fi
# Install this package's build dependencies # Install this package's build dependencies
PIPOPTS="--find-links ${WHEELS_REPOSITORY} --trusted-host ${WHEELS_SERVER}"
PIPOPTS="${PIPOPTS} --pre --use-wheel --no-index"
if [ -e requirements.txt ]; then if [ -e requirements.txt ]; then
run_cmd ${use_pip} install ${PIPOPTS} --requirement requirements.txt run_cmd ${use_pip} install ${PIPOPTS} --requirement requirements.txt
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment