Skip to content

Commit 8d1a905

Browse files
Fix circle ci nightly test installation from source development mode (and test mode) that times out (#3864)
Co-authored-by: Manuel Schlund <[email protected]>
1 parent 5008b41 commit 8d1a905

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.circleci/config.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,9 @@ commands:
9090
# Install
9191
. /opt/conda/etc/profile.d/conda.sh
9292
mkdir /logs
93-
mamba env create >> /logs/conda.txt 2>&1
93+
mamba env create
9494
conda activate esmvaltool
95+
mamba list >> /logs/conda.txt
9596
pip install << parameters.flags >> ".[<<parameters.extra>>]"> /logs/install.txt 2>&1
9697
esmvaltool install Julia > /logs/install_julia.txt 2>&1
9798
if [[ "<<parameters.flags>>" != *'--editable'* ]]
@@ -201,8 +202,9 @@ jobs:
201202
# https://docs.esmvaltool.org/en/latest/quickstart/installation.html#install-from-source
202203
. /opt/conda/etc/profile.d/conda.sh
203204
mkdir /logs
204-
mamba env create >> /logs/conda.txt 2>&1
205+
mamba env create
205206
conda activate esmvaltool
207+
mamba list >> /logs/conda.txt
206208
pip install --editable .[develop]
207209
esmvaltool install Julia > /logs/install_julia.txt 2>&1
208210
git clone https://github.com/ESMValGroup/ESMValCore $HOME/ESMValCore

0 commit comments

Comments
 (0)