File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 107
107
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh \
108
108
-O miniconda.sh
109
109
fi
110
- chmod +x miniconda.sh && ./miniconda.sh -b -p $HOME /miniconda
110
+ chmod +x miniconda.sh && ./miniconda.sh -b -p $MINICONDA_PATH
111
111
cd ..
112
- export PATH=" $HOME /miniconda /bin:$PATH "
112
+ export PATH=" $MINICONDA_PATH /bin:$PATH "
113
113
conda update --yes --quiet conda
114
114
popd
115
115
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ checkout:
4
4
5
5
machine :
6
6
environment :
7
+ MINICONDA_PATH : $HOME/miniconda
7
8
CONDA_ENV_NAME : testenv
8
9
9
10
dependencies :
@@ -16,9 +17,13 @@ dependencies:
16
17
override :
17
18
- ./build_tools/circle/build_doc.sh :
18
19
timeout : 3600 # seconds
20
+
19
21
test :
20
22
override :
21
- - source activate $CONDA_ENV_NAME && make test-sphinxext
23
+ - |
24
+ export PATH="$MINICONDA_PATH/bin:$PATH"
25
+ source activate $CONDA_ENV_NAME
26
+ make test-sphinxext
22
27
deployment :
23
28
push :
24
29
branch : /^master$|^[0-9]+\.[0-9]+\.X$/
You can’t perform that action at this time.
0 commit comments