forked from sciter-sdk/pysciter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
55 lines (40 loc) · 968 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
version: 0.6.0.{build}
branches:
only:
- master
- travis
image:
- Visual Studio 2019
environment:
matrix:
# Python versions:
# https://www.appveyor.com/docs/windows-images-software/#python
- TARGET: Python34
ARCH: 32
- TARGET: Python34-x64
ARCH: 64
- TARGET: Python35-x64
ARCH: 64
- TARGET: Python36-x64
ARCH: 64
- TARGET: Python37-x64
ARCH: 64
- TARGET: Python38-x64
ARCH: 64
- TARGET: Python39-x64
ARCH: 64
- TARGET: Python310-x64
ARCH: 64
install:
- cmd: echo Testing sciter%ARCH% with %TARGET%.
- cmd: echo Current directory is %APPVEYOR_BUILD_FOLDER%
- cmd: set PATH=C:\%TARGET%;C:\projects\deps;%PATH%;
- python --version
- mkdir ..\deps
- curl -so "..\deps\sciter.dll" "https://raw.githubusercontent.com/c-smile/sciter-sdk/master/bin.win/x%ARCH%/sciter.dll"
build_script:
- cmd: cd
- python setup.py install
test_script:
- cmd: cd
- python tests\test_value.py