forked from heitzmann/gdspy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
38 lines (32 loc) · 924 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
environment:
matrix:
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python34-x64"
DISTUTILS_USE_SDK: "1"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
install:
- "%PYTHON%\\python.exe -m pip install --upgrade pip setuptools wheel"
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
build: off
test_script:
- "build.cmd %PYTHON%\\python.exe setup.py test"
after_test:
- "build.cmd %PYTHON%\\python.exe setup.py bdist_wheel"
artifacts:
- path: dist\*.whl
deploy:
provider: GitHub
tag: $(appveyor_repo_tag_name)
description: Release $(appveyor_repo_tag_name)
auth_token:
secure: "TLjVTXLw+HfQYTJczXQ3SEGTE4sxkQNJ6gDJ0GGLDQQ5RItLcpGgkzs5Qq5WvFOF"
artifact: /gdspy.*\.whl/
prerelease: false
draft: true
on:
appveyor_repo_tag: true