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

[ci] Try a bootstrap fix

parent c4a61c7a
No related branches found
No related tags found
No related merge requests found
Pipeline #25819 failed
...@@ -67,9 +67,6 @@ merge_conda_cache() { ...@@ -67,9 +67,6 @@ merge_conda_cache() {
if [ -d ${2}/conda-bld ]; then if [ -d ${2}/conda-bld ]; then
log_info "Moving conda-bld packages (artifacts)..." log_info "Moving conda-bld packages (artifacts)..."
run_cmd mv ${2}/conda-bld ${1} run_cmd mv ${2}/conda-bld ${1}
run_cmd ${CONDA_ROOT}/bin/conda index --verbose ${1}/conda-bld
run_cmd ls -l ${1}/conda-bld
run_cmd ls -l ${1}/conda-bld/noarch/
fi fi
fi fi
} }
...@@ -140,6 +137,9 @@ CONDA_CLI_CHANNELS="-c ${CONDA_CHANNEL_ROOT} -c defaults" ...@@ -140,6 +137,9 @@ CONDA_CLI_CHANNELS="-c ${CONDA_CHANNEL_ROOT} -c defaults"
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
# updates the base installation, installs conda-build
run_cmd ls -l ${CONDA_ROOT}/conda-bld
run_cmd ${CONDA_ROOT}/bin/conda install -n base python conda=4 conda-build=3
CONDA_CLI_CHANNELS="-c ${CONDA_ROOT}/conda-bld ${CONDA_CLI_CHANNELS}" CONDA_CLI_CHANNELS="-c ${CONDA_ROOT}/conda-bld ${CONDA_CLI_CHANNELS}"
run_cmd ls -l ${CONDA_ROOT}/conda-bld run_cmd ls -l ${CONDA_ROOT}/conda-bld
run_cmd ls -l ${CONDA_ROOT}/conda-bld/noarch/ run_cmd ls -l ${CONDA_ROOT}/conda-bld/noarch/
......
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