File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ environment:
2121 matrix :
2222 - CONDA_LOC : " C:\\ Miniconda-x64"
2323 - CONDA_LOC : " C:\\ Miniconda35-x64"
24+ - CONDA_LOC : " C:\\ Miniconda36-x64"
2425
2526install :
2627 # This breaks conda-build because of git
@@ -39,8 +40,14 @@ test_script:
3940 - cmd : for /f "tokens=*" %%i in ('python -c "import versioneer; print(versioneer.get_version())"') do set GPUARRAY_VERSION=%%i
4041 - cmd : echo %GPUARRAY_VERSION%
4142 - cmd : conda build conda
43+ - cmd : mkdir pkgs
44+ - cmd : xcopy "%CONDA_LOC%"\conda-bld\win-64\pygpu* pkgs\ /Y
45+ - cmd : xcopy "%CONDA_LOC%"\conda-bld\win-64\libgpuarray* pkgs\ /Y
4246 - ps : |
4347 if($env:appveyor_repo_tag -eq 'False') {
44- cmd /c "anaconda -t $BINSTAR_TOKEN upload --user=abergeron $CONDA_LOC\conda-bld\win-64\pygpu* 2>&1"
45- cmd /c "anaconda -t $BINSTAR_TOKEN upload --user=abergeron $CONDA_LOC\conda-bld\win-64\libgpuarray* 2>&1"
48+ cmd /c "anaconda -t $BINSTAR_TOKEN upload --user=abergeron pkgs/* 2>&1"
4649 }
50+
51+ artifacts :
52+ - path : pkgs/*
53+ name : " Conda Packages"
You can’t perform that action at this time.
0 commit comments