forked from getlogbook/logbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
70 lines (55 loc) · 1.52 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
cache:
- C:\Users\appveyor\AppData\Local\pip\Cache\wheels
environment:
global:
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
# /E:ON and /V:ON options are not enabled in the batch script intepreter
# See: http://stackoverflow.com/a/13751649/163740
BUILD: "cmd /E:ON /V:ON /C .\\.appveyor\\build.cmd"
PYPI_USERNAME:
secure: ixvjwUN/HsSfGkU3OvtQ8Q==
PYPI_PASSWORD:
secure: KOr+oEHZJmo1el3bT+ivmQ==
ENABLE_LOGBOOK_NTEVENTLOG_TESTS: "TRUE"
matrix:
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python27"
CYBUILD: "TRUE"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python27-x64"
CYBUILD: "TRUE"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35"
CYBUILD: "TRUE"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python35-x64"
CYBUILD: "TRUE"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python36"
CYBUILD: "TRUE"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python36-x64"
CYBUILD: "TRUE"
init:
- echo %PYTHON%
- set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
install:
- ".appveyor\\prepare.bat"
build: off
test_script:
- py.test -r s tests
after_test:
- ".appveyor\\after_test.bat"
artifacts:
# Archive the generated packages in the ci.appveyor.com build report.
- path: dist\*.whl
deploy:
description: ''
provider: GitHub
auth_token:
secure: 0yLUo/V+wwSvSFk9nBW/77RN9iTjJA1B5p/TM1XgVLPPFEZWkH756jyJ0FOmtJPt
artifact: /.*\.whl/
draft: true
prerelease: false
on:
appveyor_repo_tag: true