-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
35 lines (30 loc) · 1.14 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
platform:
- x86
environment:
PYTHON_HOME: "C:\\Python37"
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
CONAN_VISUAL_VERSIONS: 15
CONAN_BUILD_TYPES: Release
install:
- cmd: echo "Downloading conan..."
- cmd: set PATH=%PATH%;%PYTHON%/Scripts/
- cmd: pip.exe install conan --upgrade
- cmd: pip.exe install conan_package_tools bincrafters_package_tools
- cmd: conan user # Create the conan data directory
- cmd: conan --version
- cmd: conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan
- cmd: conan remote add conan-community https://api.bintray.com/conan/conan-community/conan
- cmd: conan remote add conan-lurume84 https://api.bintray.com/conan/lurume84/public-conan
build_script:
- ps: ./version.ps1 $Env:APPVEYOR_BUILD_VERSION
- cmd: mkdir build
- cmd: ./build.bat
- cmd: cd ..
- cmd: makensis.exe src\DesktopInstaller\Installer.nsi
- cmd: 7z a bin\Release\DesktopApp\PDBs.7z bin\Release\DesktopApp\*.pdb
artifacts:
- path: bin\Release\DesktopInstaller\JirafySetup.exe
name: Jirafy
- path: bin\Release\DesktopApp\PDBs.7z
name: PDBs