Skip to content
Snippets Groups Projects
Verified Commit 7ec33fdc authored by David Hoese's avatar David Hoese
Browse files

Use default conda environment location in CI

parent 04bef73f
No related branches found
No related tags found
No related merge requests found
Pipeline #61008 passed
...@@ -22,8 +22,10 @@ if [[ -z "$METOBS_SITE_DEST" ]]; then ...@@ -22,8 +22,10 @@ if [[ -z "$METOBS_SITE_DEST" ]]; then
fi fi
# create or update the existing environment to the newest pelican version # create or update the existing environment to the newest pelican version
conda env update -p "${PWD}/rain_site_env" -f "${SCRIPT_DIR}/build_environment.yml" # Environments should be created as gitlab-runner user and placed in
conda activate "${PWD}/rain_site_env" # /home/gitlab-runner/.conda/envs/<env name> by default
conda env update -n "rain_site_env" -f "${SCRIPT_DIR}/build_environment.yml"
conda activate "rain_site_env"
make clean make clean
make publish make publish
echo $PWD echo $PWD
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment