-
Notifications
You must be signed in to change notification settings - Fork 4
/
appveyor.yml
37 lines (31 loc) · 1.02 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
---
image:
- Visual Studio 2019
clone_folder: c:\projects\coronan
cache:
- c:\Users\appveyor\.conan -> cmake/Conan.cmake
- c:\.conan -> cmake/Conan.cmake
- c:\ProgramData\chocolatey\lib -> appveyor.yml
- c:\Users\appveyor\appdata\local\pip\cache -> py-requirements.txt
environment:
PYTHON: c:\Python39-x64\python.exe
Qt5_DIR: c:\Qt\5.15.2\msvc2019_64
install:
- cmd: |-
choco install doxygen.install
set PATH=%PATH%;C:\Users\appveyor\AppData\Roaming\Python\Python39\Scripts
"%PYTHON%" -m pip install --user -r %APPVEYOR_BUILD_FOLDER%\py-requirements.txt
before_build:
- cmd: |-
mkdir build
cd build
cmake -S %APPVEYOR_BUILD_FOLDER% -G "Visual Studio 16 2019" -DCMAKE_BUILD_TYPE:STRING=Release
build_script:
- cmd: |-
cmake --build . --parallel 16 --config Release --clean-first --target docs package
test_script:
- cmd: ctest -C Debug
artifacts:
- path: \build\Coronan-*.msi
name: Coronan_installer
type: File