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

[ci] Fix deployment bootstrapping

parent d0ce4426
No related branches found
No related tags found
No related merge requests found
Pipeline #25802 failed
...@@ -139,7 +139,12 @@ cat ${CONDARC} ...@@ -139,7 +139,12 @@ cat ${CONDARC}
if [ "${1}" == "build" ]; then if [ "${1}" == "build" ]; then
run_cmd ${CONDA_ROOT}/bin/conda install -n base python conda=4 conda-build=3 run_cmd ${CONDA_ROOT}/bin/conda install -n base python conda=4 conda-build=3
elif [ "${1}" == "local" ]; then elif [ "${1}" == "local" ]; then
run_cmd ${CONDA_ROOT}/bin/conda create -n "${2}" ${CONDA_ROOT}/conda-bld/${OS_SLUG}/bob.devtools-*.tar.bz2 if [ "$(uname -s)" == "Linux" ]; then
_os="linux-64"
else
_os="osx-64"
fi
run_cmd ${CONDA_ROOT}/bin/conda create -n "${2}" ${CONDA_ROOT}/conda-bld/${_os}/bob.devtools-*.tar.bz2
elif [ "${1}" == "beta" ] || [ "${1}" == "stable" ]; then elif [ "${1}" == "beta" ] || [ "${1}" == "stable" ]; then
run_cmd ${CONDA_ROOT}/bin/conda create -n "${2}" bob.devtools run_cmd ${CONDA_ROOT}/bin/conda create -n "${2}" bob.devtools
else 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