Skip to content

Commit

Permalink
jenkins scripts deletes conda envs
Browse files Browse the repository at this point in the history
  • Loading branch information
akmorrow13 authored and heuermh committed Mar 8, 2019
1 parent 9362f15 commit 6d29ac2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/jenkins-test
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ then
for python in ${pythons[*]}
do
uuid=$(uuidgen)
conda create -q -n adam-build-${uuid} python=${python}
conda create -y -q -n adam-build-${uuid} python=${python}
source activate adam-build-${uuid}

# prepare adam python
Expand Down Expand Up @@ -237,7 +237,7 @@ then

# deactivate and remove the conda env
source deactivate
conda remove -n adam-build-${uuid} --all
conda remove -y -n adam-build-${uuid} --all

# copy python targets back
cp -r adam-python/target ${PROJECT_ROOT}/adam-python/
Expand Down

0 comments on commit 6d29ac2

Please sign in to comment.