mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-21 14:05:14 +02:00
[secure] password added to appveyor
This commit is contained in:
parent
59b15f75b7
commit
f1078fa8fc
1 changed files with 11 additions and 2 deletions
13
appveyor.yml
13
appveyor.yml
|
|
@ -1,4 +1,6 @@
|
||||||
environment:
|
environment:
|
||||||
|
pip_upload:
|
||||||
|
secure: 8/ZjXFwtd1S7ixd7PJOpptupKKEDhm2da/q3unabJ00=
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
- PYTHON_VERSION: 2.7
|
- PYTHON_VERSION: 2.7
|
||||||
|
|
@ -20,9 +22,9 @@ install:
|
||||||
- "conda create -q -n build-environment python=%PYTHON_VERSION% numpy scipy matplotlib"
|
- "conda create -q -n build-environment python=%PYTHON_VERSION% numpy scipy matplotlib"
|
||||||
- activate build-environment
|
- activate build-environment
|
||||||
# We need wheel installed to build wheels
|
# We need wheel installed to build wheels
|
||||||
- python -m pip install wheel"
|
- python -m pip install wheel
|
||||||
# GPy needs paramz
|
# GPy needs paramz
|
||||||
- python -m pip install paramz"
|
- python -m pip install paramz
|
||||||
|
|
||||||
build: off
|
build: off
|
||||||
|
|
||||||
|
|
@ -35,6 +37,7 @@ test_script:
|
||||||
# the interpreter you're using - Appveyor does not do anything special
|
# the interpreter you're using - Appveyor does not do anything special
|
||||||
# to put the Python evrsion you want to use on PATH.
|
# to put the Python evrsion you want to use on PATH.
|
||||||
#- "build.cmd %PYTHON%\\python.exe setup.py test"
|
#- "build.cmd %PYTHON%\\python.exe setup.py test"
|
||||||
|
- "python setup.py test"
|
||||||
|
|
||||||
after_test:
|
after_test:
|
||||||
# This step builds your wheels.
|
# This step builds your wheels.
|
||||||
|
|
@ -44,6 +47,12 @@ artifacts:
|
||||||
# bdist_wheel puts your built wheel in the dist directory
|
# bdist_wheel puts your built wheel in the dist directory
|
||||||
- path: dist\*
|
- path: dist\*
|
||||||
|
|
||||||
|
deploy_script:
|
||||||
|
- "echo [pypi] > %USERPROFILE%\\.pypirc"
|
||||||
|
- "echo username: user >> %USERPROFILE%\\.pypirc"
|
||||||
|
- "echo password: %pip_upload% >> %USERPROFILE%\\.pypirc"
|
||||||
|
- python setup.py bdist_wheel upload
|
||||||
|
|
||||||
#on_success:
|
#on_success:
|
||||||
# You can use this step to upload your artifacts to a public website.
|
# You can use this step to upload your artifacts to a public website.
|
||||||
# See Appveyor's documentation for more details. Or you can simply
|
# See Appveyor's documentation for more details. Or you can simply
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue