-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
55 lines (43 loc) · 1.18 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
environment:
matrix:
- job_name: Ubuntu Linux build
appveyor_build_worker_image: Ubuntu2004
- job_name: MacOS build
appveyor_build_worker_image: macos-bigsur
- job_name: Windows VS 2019 build
appveyor_build_worker_image: Visual Studio 2019
for:
-
matrix:
only:
- job_name: Ubuntu Linux build
install:
- source ~/venv3.10/bin/activate
- pip install --upgrade pip
- pip install conan
- conan profile detect
test_script:
- conan create . --version=19.7.0 --build=missing -c tools.system.package_manager:mode=install -c tools.system.package_manager:sudo=True
-
matrix:
only:
- job_name: MacOS build
install:
- source ~/venv3.10/bin/activate
- pip install --upgrade pip
- pip install conan
- conan profile detect
test_script:
- conan create . -s compiler.cppstd=gnu17 --version=19.7.0 --build=missing
-
matrix:
only:
- job_name: Windows VS 2019 build
install:
- set PATH=C:\Python38-x64;C:\Python38-x64\scripts;%PATH%
- python -m pip install --upgrade pip
- pip install conan
- conan profile detect
test_script:
- conan create . --version=19.7.0 --build=missing
build: off