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

Make sure the new miniconda installation is on the path

parent 820e6944
No related branches found
No related tags found
1 merge request!63Conda package based CI
......@@ -19,21 +19,23 @@ default_channels:
- https://repo.continuum.io/pkgs/r
- https://repo.continuum.io/pkgs/pro
EOF
echo "Contents of \`${CONDARC}':"
cat ${CONDARC}
run_cmd ${CONDA_ROOT}/bin/conda config --set add_pip_as_python_dependency false
run_cmd ${CONDA_ROOT}/bin/conda config --set always_yes yes --set changeps1 no
run_cmd ${CONDA_ROOT}/bin/conda config --set changeps1 false
run_cmd ${CONDA_ROOT}/bin/conda config --set always_yes true
run_cmd ${CONDA_ROOT}/bin/conda config --set quiet true
run_cmd ${CONDA_ROOT}/bin/conda config --set show_channel_urls true
run_cmd ${CONDA_ROOT}/bin/conda config --set anaconda_upload no
run_cmd ${CONDA_ROOT}/bin/conda config --set anaconda_upload false
run_cmd ${CONDA_ROOT}/bin/conda config --add channels ${CONDA_CHANNEL}
if [ -z "${CI_COMMIT_TAG}" ]; then
run_cmd ${CONDA_ROOT}/bin/conda config --add channels ${CONDA_BETA_CHANNEL}
fi
run_cmd ${CONDA_ROOT}/bin/conda config --set ssl_verify false
# displays contents of our configuration
echo "Contents of \`${CONDARC}':"
cat ${CONDARC}
# updates conda installation
run_cmd ${CONDA_ROOT}/bin/conda install --quiet --yes python conda=4.4 curl conda-build=3
......
......@@ -4,6 +4,8 @@
source $(dirname ${0})/functions.sh
# Makes sure we activate the base environment if available
PATH=${CONDA_ROOT}/bin:${PATH}
export_env PATH
run_cmd source ${CONDA_ROOT}/etc/profile.d/conda.sh
run_cmd conda activate base
......
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