-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
39 lines (27 loc) · 1006 Bytes
/
appveyor.yml
File metadata and controls
39 lines (27 loc) · 1006 Bytes
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
version: 1.0.{build}
branches:
only:
- master
image:
- Visual Studio 2022
configuration:
- Release
environment:
matrix:
- ARCH: x86_64
- ARCH: x86
matrix:
fast_finish: true
install:
- python.exe -m pip install --upgrade pip
- python.exe -m pip install "conan>=2"
- cmd: conan profile detect
build_script:
- cmd: >-
conan build mechanism/test --build=missing -s arch=%ARCH% -s build_type=%CONFIGURATION%
conan build platform/test --build=missing -s arch=%ARCH% -s build_type=%CONFIGURATION% -o platform_os=STDCPP
conan build platform/test --build=missing -s arch=%ARCH% -s build_type=%CONFIGURATION% -o platform_os=WINDOWS
conan build mechanism --build=missing -s arch=%ARCH% -s build_type=%CONFIGURATION%
conan create mechanism --build=missing -s arch=%ARCH% -s build_type=%CONFIGURATION%
conan build platform --build=missing -s arch=%ARCH% -s build_type=%CONFIGURATION%
conan create platform --build=missing -s arch=%ARCH% -s build_type=%CONFIGURATION%