mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-06-11 15:15:15 +02:00
fix: pkg: faster throughput:
This commit is contained in:
parent
d0513315c7
commit
f7f8f31b0c
2 changed files with 19 additions and 36 deletions
|
|
@ -2,21 +2,4 @@ IF "%APPVEYOR_REPO_BRANCH%"=="deploy" (
|
|||
ECHO "twine upload --skip-existing dist/*" 1>&2
|
||||
) ELSE (
|
||||
ECHO Only deploy on deploy branch
|
||||
)
|
||||
|
||||
|
||||
|
||||
echo not deploying on other branches, other than deploy
|
||||
|
||||
|
||||
|
||||
#ps: >-
|
||||
# If ($env:APPVEYOR_REPO_BRANCH -eq 'devel') {
|
||||
# echo not deploying on devel # twine upload --skip-existing -r test dist/*
|
||||
# }
|
||||
# ElseIf ($env:APPVEYOR_REPO_BRANCH -eq 'deploy') {
|
||||
# twine upload --skip-existing dist/*
|
||||
# }
|
||||
# Else {
|
||||
# echo not deploying on other branches
|
||||
# }
|
||||
)
|
||||
36
appveyor.yml
36
appveyor.yml
|
|
@ -17,22 +17,22 @@ environment:
|
|||
# - Release
|
||||
|
||||
install:
|
||||
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
|
||||
- conda config --set always_yes yes --set changeps1 no
|
||||
- conda update -q conda
|
||||
- conda info -a
|
||||
- "conda create -q -n build-environment python=%PYTHON_VERSION% numpy scipy matplotlib"
|
||||
- activate build-environment
|
||||
# We need wheel installed to build wheels
|
||||
- python -m pip install wheel
|
||||
# GPy needs paramz
|
||||
- python -m pip install paramz
|
||||
- python -m pip install nose-show-skipped
|
||||
- python -m pip install coverage
|
||||
- python -m pip install coveralls
|
||||
- python -m pip install codecov
|
||||
- python -m pip install twine
|
||||
- "python setup.py develop"
|
||||
# - "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
|
||||
# - conda config --set always_yes yes --set changeps1 no
|
||||
# - conda update -q conda
|
||||
# - conda info -a
|
||||
# - "conda create -q -n build-environment python=%PYTHON_VERSION% numpy scipy matplotlib"
|
||||
# - activate build-environment
|
||||
# # We need wheel installed to build wheels
|
||||
# - python -m pip install wheel
|
||||
# # GPy needs paramz
|
||||
# - python -m pip install paramz
|
||||
# - python -m pip install nose-show-skipped
|
||||
# - python -m pip install coverage
|
||||
# - python -m pip install coveralls
|
||||
# - python -m pip install codecov
|
||||
# - python -m pip install twine
|
||||
# - "python setup.py develop"
|
||||
|
||||
build: off
|
||||
|
||||
|
|
@ -49,8 +49,8 @@ test_script:
|
|||
|
||||
after_test:
|
||||
# This step builds your wheels.
|
||||
- "python setup.py bdist_wheel bdist_wininst"
|
||||
- codecov
|
||||
# - "python setup.py bdist_wheel bdist_wininst"
|
||||
# - codecov
|
||||
|
||||
artifacts:
|
||||
# bdist_wheel puts your built wheel in the dist directory
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue