-
Notifications
You must be signed in to change notification settings - Fork 7
/
appveyor.yml
42 lines (33 loc) · 851 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
version: 0.9.99.{build}
environment:
PYTHON: "C:\\Python36-x64\\python.exe"
matrix:
- toolchain: msvc
- toolchain: clang
image:
- Visual Studio 2015
- Visual Studio 2017
configuration:
- Debug
- Release
platform:
- x86
- x64
- arm64
matrix:
exclude:
- image: Visual Studio 2015
platform: arm64
- image: Visual Studio 2015
toolchain: clang
- image: Visual Studio 2017
toolchain: clang
init:
# Only run latest compiler on push, run everything on pull request
- ps: if (!$env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_WORKER_IMAGE -ne "Visual Studio 2019") {Exit-AppveyorBuild}
install:
- cmd: >-
git submodule update --init --recursive
build_script:
- cmd: >-
.\tools\appveyor_ci.bat "%APPVEYOR_BUILD_WORKER_IMAGE%" %platform% %configuration% %toolchain% "%PYTHON%"