Skip to content

Commit a99c84f

Browse files
committed
CI: Set right envvar
[ci skip]
1 parent e6f445f commit a99c84f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.appveyor.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ environment:
2121

2222
matrix:
2323

24-
- MINICONDA_DIR: "C:\\Miniconda3_64"
24+
- CONDA_ROOT: "C:\\Miniconda3_64"
2525
PYTHON_VERSION: "3.6"
2626
PYTHON_ARCH: "64"
2727
CONDA_PY: "36"
2828
NUMPY: "1.11"
2929
IPADDRESS: ""
3030

31-
- MINICONDA_DIR: "C:\\Miniconda3_64"
31+
- CONDA_ROOT: "C:\\Miniconda3_64"
3232
PYTHON_VERSION: "2.7"
3333
PYTHON_ARCH: "64"
3434
CONDA_PY: "27"
@@ -53,7 +53,7 @@ install:
5353
# this installs the appropriate Miniconda (Py2/Py3, 32/64 bit)
5454
# updates conda & installs: conda-build jinja2 anaconda-client
5555
- powershell .\ci\install.ps1
56-
- SET PATH=%MINICONDA_DIR%;%MINICONDA_DIR%\Scripts;%PATH%
56+
- SET PATH=%CONDA_ROOT%;%CONDA_ROOT%\Scripts;%PATH%
5757
- echo "install"
5858
- cd
5959
- ls -ltr
@@ -84,14 +84,14 @@ install:
8484

8585
- cmd: conda build -q conda-recipes/pandas --python=%PYTHON_VERSION% --numpy=%NUMPY%
8686
- cmd: pip install -e .
87-
- cmd: conda install -q %MINICONDA_DIR%\\conda-bld\\*\\pandas*.tar.bz2
87+
- cmd: conda install -q %CONDA_ROOT%\\conda-bld\\*\\pandas*.tar.bz2
8888

8989
test_script:
9090
# tests
9191
- cmd: pytest
9292
- cmd: conda build conda-recipes/cyberpandas --python=${PYTHON}
9393

9494
on_success:
95-
- cmd: anaconda -t %UPLOAD_KEY% upload -u intake --force %MINICONDA_DIR%\\conda-bld-*\\*.tar.bz2
95+
- cmd: anaconda -t %UPLOAD_KEY% upload -u intake --force %CONDA_ROOT%\\conda-bld-*\\*.tar.bz2
9696
on:
9797
branch: master

0 commit comments

Comments
 (0)