-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
executable file
·50 lines (41 loc) · 1.22 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
version: "{build}"
shallow_clone: true
cache:
- '%LOCALAPPDATA%\pip\Cache'
- '%CACHED_FOLDER%'
environment:
global:
VENV_BUILD_DIR: "%HOME%\\venv_build"
CACHED_FOLDER: "%LOCALAPPDATA%\\cashed"
HOME: "%HOMEDRIVE%\\%HOMEPATH%"
matrix:
#- PYTHON_DIR: "C:\\Python27-x64"
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
# APPVEYORRUN: "unit"
#- PYTHON_DIR: "C:\\Python35-x64"
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
# APPVEYORRUN: "unit"
#- PYTHON_DIR: "C:\\Python36-x64"
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
# APPVEYORRUN: "unit"
- PYTHON_DIR: "C:\\Python37-x64"
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
APPVEYORRUN: "unit"
install:
- ps: |
& "$env:APPVEYOR_BUILD_FOLDER\ci\appveyor-before-install.ps1"
& "$env:APPVEYOR_BUILD_FOLDER\ci\appveyor-install-deps.ps1"
build_script:
- ps: |
& "$env:APPVEYOR_BUILD_FOLDER\ci\appveyor-build.ps1"
test_script:
- ps: |
& "$env:APPVEYOR_BUILD_FOLDER\ci\appveyor-test.ps1"
on_failure:
- ps: |
& "$env:APPVEYOR_BUILD_FOLDER\ci\appveyor-rdp.ps1"
on_finish:
- ps: |
& "$env:APPVEYOR_BUILD_FOLDER\ci\appveyor-finish.ps1"
#artifacts:
# - path: dist\*