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

Merge branch 'stable' into 'staging'

do not use beta wheels when building a tag

See merge request !40
parents 0d18802c 5e15f703
No related branches found
No related tags found
2 merge requests!42Staging,!40do not use beta wheels when building a tag
......@@ -42,7 +42,12 @@ PIPOPTS="--find-links ${WHEELS_REPOSITORY}"
if [ ! -z "${WHEELS_SERVER}" ]; then
PIPOPTS="${PIPOPTS} --trusted-host ${WHEELS_SERVER}"
fi
PIPOPTS="${PIPOPTS} --pre --use-wheel --no-index"
# when building a tag, do not use beta wheels
if [ -z "${CI_BUILD_TAG}" ]; then
PIPOPTS="${PIPOPTS} --pre --use-wheel --no-index"
else
PIPOPTS="${PIPOPTS} --use-wheel --no-index"
fi
if [ -e requirements.txt ]; then
run_cmd ${use_pip} install ${PIPOPTS} --requirement requirements.txt
else
......
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