forked from kolrabi/steamcontroller
-
Notifications
You must be signed in to change notification settings - Fork 3
/
appveyor.yml
35 lines (30 loc) · 1013 Bytes
/
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
build: false
environment:
PYTHON: "C:\\Python38-x64"
CONAN_USERNAME: "ltjax"
CONAN_LOGIN_USERNAME: "ltjax"
CONAN_CHANNEL: "testing"
CONAN_REMOTES: "https://api.bintray.com/conan/bincrafters/public-conan"
CONAN_UPLOAD: "https://api.bintray.com/conan/ltjax/conan"
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: macos
CONAN_APPLE_CLANG_VERSIONS: "11.0"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
CONAN_VISUAL_VERSIONS: 16
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
CONAN_VISUAL_VERSIONS: 15
install:
# Windows build
- cmd: set PATH=%PATH%;%PYTHON%/Scripts/
- cmd: pip.exe install conan --upgrade
- cmd: pip.exe install conan_package_tools
- cmd: conan user # It creates the conan data directory
# macOS build
- sh: chmod +x .appveyor/install.sh
- sh: .appveyor/install.sh
test_script:
# Windows build
- cmd: python build.py
# macOS build
- sh: chmod +x .appveyor/run.sh
- sh: .appveyor/run.sh