-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathappveyor.yml
97 lines (81 loc) · 2 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
version: 1.0.{build}
branches:
except:
- '*documentation'
image: Visual Studio 2019
environment:
matrix:
- job_name: Python 3.8 x86
PYTHON: "C:\\Python38"
PYTHON_VERSION: 3.8
PYTHON_ARCH: 32
- job_name: Python 3.8 x64
PYTHON: "C:\\Python38-x64"
PYTHON_VERSION: 3.8
PYTHON_ARCH: 64
- job_name: Python 3.9 x86
PYTHON: "C:\\Python39"
PYTHON_VERSION: 3.9
PYTHON_ARCH: 32
- job_name: Python 3.9 x64
PYTHON: "C:\\Python39-x64"
PYTHON_VERSION: 3.9
PYTHON_ARCH: 64
- job_name: Python 3.10 x86
PYTHON: "C:\\Python310"
PYTHON_VERSION: 3.10
PYTHON_ARCH: 32
- job_name: Python 3.10 x64
PYTHON: "C:\\Python310-x64"
PYTHON_VERSION: 3.10
PYTHON_ARCH: 64
- job_name: Python 3.11 x86
PYTHON: "C:\\Python311"
PYTHON_VERSION: 3.11
PYTHON_ARCH: 32
- job_name: Python 3.11 x64
PYTHON: "C:\\Python311-x64"
PYTHON_VERSION: 3.11
PYTHON_ARCH: 64
- job_name: Python 3.12 x86
PYTHON: "C:\\Python312"
PYTHON_VERSION: 3.12
PYTHON_ARCH: 32
- job_name: Python 3.12 x64
PYTHON: "C:\\Python312-x64"
PYTHON_VERSION: 3.12
PYTHON_ARCH: 64
- job_name: Python 3.13 x86
PYTHON: "C:\\Python313"
PYTHON_VERSION: 3.13
PYTHON_ARCH: 32
- job_name: Python 3.13 x64
PYTHON: "C:\\Python313-x64"
PYTHON_VERSION: 3.13
PYTHON_ARCH: 64
init:
- ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%
install:
- cmd: >-
set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
python --version
python -m pip install --upgrade pip
.\keen.bat dependency
build: off
test_script:
- cmd: .\keen.bat test
artifacts:
- path: result/
name: results
- path: dist/*.whl
name: wheel
- path: dist/*.tar.gz
name: source
- path: keywords/keywords.html
name: keywords.html
- path: keywords/keywords.xml
name: keywords.xml
deploy_script:
- ps: .\deploy.ps1
on_finish:
- ps: .\testreport.ps1