summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorMarius Gedminas <marius@gedmin.as>2019-11-12 14:10:29 +0200
committerGitHub <noreply@github.com>2019-11-12 14:10:29 +0200
commit84fa61d5660546c6d8f6a3ffdb731cc3c7d464ac (patch)
tree1ee8582d6305ea2403a95642dff7236453c9fbbf /appveyor.yml
parente906781e4539a5276fa9917ccb5d9b9ff2f33d58 (diff)
parent3b8ab1e0d20f1b3867b3fa5b4411aae1e31d4233 (diff)
downloadzope-i18nmessageid-84fa61d5660546c6d8f6a3ffdb731cc3c7d464ac.tar.gz
Merge pull request #18 from zopefoundation/more-wheels
Also build manylinux and Mac OS wheels
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml11
1 files changed, 10 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 2913229..d643125 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -13,9 +13,18 @@ environment:
- python: 36-x64
- python: 37
- python: 37-x64
+ - python: 38
+ - python: 38-x64
install:
- "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"
+ - ps: |
+ $env:PYTHON = "C:\\Python${env:PYTHON}"
+ if (-not (Test-Path $env:PYTHON)) {
+ curl -o install_python.ps1 https://raw.githubusercontent.com/matthew-brett/multibuild/11a389d78892cf90addac8f69433d5e22bfa422a/install_python.ps1
+ .\install_python.ps1
+ }
+ - ps: if (-not (Test-Path $env:PYTHON)) { throw "No $env:PYTHON" }
- echo "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 > "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\amd64\vcvars64.bat"
- pip install -e .
@@ -31,6 +40,6 @@ artifacts:
name: wheel
deploy_script:
- - ps: if ($env:APPVEYOR_REPO_TAG -eq $TRUE) { pip install twine; twine upload dist/* }
+ - ps: if ($env:APPVEYOR_REPO_TAG -eq $TRUE) { pip install twine; twine upload --skip-existing dist/* }
deploy: on