From cf95b706c207b5d80b79771df0d9acb294b4cd5e Mon Sep 17 00:00:00 2001 From: Amir MOHAMMADI <amir.mohammadi@idiap.ch> Date: Mon, 4 Oct 2021 16:32:54 +0200 Subject: [PATCH] [ci] don't remove ~/.conda folders --- bob/devtools/data/gitlab-ci/nightlies.yaml | 2 -- bob/devtools/data/gitlab-ci/noarch.yaml | 2 -- bob/devtools/data/gitlab-ci/single-package.yaml | 2 -- 3 files changed, 6 deletions(-) diff --git a/bob/devtools/data/gitlab-ci/nightlies.yaml b/bob/devtools/data/gitlab-ci/nightlies.yaml index 54fda8dc..92ca0c3e 100644 --- a/bob/devtools/data/gitlab-ci/nightlies.yaml +++ b/bob/devtools/data/gitlab-ci/nightlies.yaml @@ -20,8 +20,6 @@ stages: .bootstrap: before_script: - "[ -r ~/.condarc ] && rm -fv ~/.condarc" - # remove ~/.conda if it exists unless it's a mac machine - - "[ -d ~/.conda ] && [ ! -d /Applications ] && rm -rfv ~/.conda" - curl --silent "${BOOTSTRAP}" --output "bootstrap.py" - python3 bootstrap.py -vv channel base - source ${CONDA_ROOT}/etc/profile.d/conda.sh diff --git a/bob/devtools/data/gitlab-ci/noarch.yaml b/bob/devtools/data/gitlab-ci/noarch.yaml index 4290461d..7e86d794 100644 --- a/bob/devtools/data/gitlab-ci/noarch.yaml +++ b/bob/devtools/data/gitlab-ci/noarch.yaml @@ -22,8 +22,6 @@ stages: .bootstrap: before_script: - "[ -r ~/.condarc ] && rm -fv ~/.condarc" - # remove ~/.conda if it exists unless it's a mac machine - - "[ -d ~/.conda ] && [ ! -d /Applications ] && rm -rfv ~/.conda" - curl --silent "${BOOTSTRAP}" --output "bootstrap.py" - python3 bootstrap.py -vv channel bdt - source ${CONDA_ROOT}/etc/profile.d/conda.sh diff --git a/bob/devtools/data/gitlab-ci/single-package.yaml b/bob/devtools/data/gitlab-ci/single-package.yaml index 81ea1b8e..89a9a28a 100644 --- a/bob/devtools/data/gitlab-ci/single-package.yaml +++ b/bob/devtools/data/gitlab-ci/single-package.yaml @@ -22,8 +22,6 @@ stages: .bootstrap: before_script: - "[ -r ~/.condarc ] && rm -fv ~/.condarc" - # remove ~/.conda if it exists unless it's a mac machine - - "[ -d ~/.conda ] && [ ! -d /Applications ] && rm -rfv ~/.conda" - curl --silent "${BOOTSTRAP}" --output "bootstrap.py" - python3 bootstrap.py -vv channel bdt - source ${CONDA_ROOT}/etc/profile.d/conda.sh -- GitLab