-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
38 lines (31 loc) · 1.06 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
build: Script
environment:
PYTHON_DIR: "C:\\Python38-x64\\"
PYTHON_EXE: "%PYTHON_DIR%\\python.exe"
PYTHON_PIP: "%PYTHON_DIR%\\Scripts\\pip.exe"
CONAN_REFERENCE: "youtube_decipher/1.0.2"
CONAN_USERNAME: "linux13524"
CONAN_CHANNEL: "testing"
CONAN_CPPSTDS: "17"
CONAN_STABLE_BRANCH_PATTERN: "release/*"
CONAN_UPLOAD_DEPENDENCIES: "all"
CONAN_BUILD_POLICY: "outdated"
CONAN_REVISIONS_ENABLED: 1
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
CONAN_VISUAL_VERSIONS: 15
CONAN_BUILD_TYPES: Debug
CONAN_VISUAL_RUNTIMES: MDd
CONAN_ARCHS: x86_64
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
CONAN_VISUAL_VERSIONS: 15
CONAN_BUILD_TYPES: Release
CONAN_VISUAL_RUNTIMES: MD
CONAN_ARCHS: x86_64
install:
- set PATH=%PATH%;%PYTHON_DIR%/Scripts/
- "%PYTHON_PIP% install conan --upgrade"
- "%PYTHON_PIP% install conan_package_tools"
- conan user # It creates the conan data directory
build_script:
- "%PYTHON_EXE% build.py"