38 lines
1.2 KiB
YAML
38 lines
1.2 KiB
YAML
build: false
|
|
|
|
environment:
|
|
PYTHON: "C:\\Python37"
|
|
|
|
CONAN_UPLOAD: "https://api.bintray.com/conan/steakhal/development"
|
|
CONAN_BUILD_POLICY: "missing"
|
|
CONAN_USERNAME: "steakhal"
|
|
CONAN_DOCKER_32_IMAGES: 1
|
|
CONAN_CHANNEL: "testing"
|
|
# CONAN_UPLOAD_DEPENDENCIES="all"
|
|
CONAN_STABLE_BRANCH_PATTERN: "release/*"
|
|
CONAN_UPLOAD_ONLY_WHEN_STABLE: 1
|
|
|
|
matrix:
|
|
- MINGW_CONFIGURATIONS: '7@x86_64@seh@posix, 7@x86@dwarf2@posix, 8@x86_64@seh@posix, 8@x86@dwarf2@posix'
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
CONAN_VISUAL_VERSIONS: 15
|
|
CONAN_BUILD_TYPES: Release
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
CONAN_VISUAL_VERSIONS: 15
|
|
CONAN_BUILD_TYPES: Debug
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
|
|
CONAN_VISUAL_VERSIONS: 16
|
|
CONAN_BUILD_TYPES: Release
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
|
|
CONAN_VISUAL_VERSIONS: 16
|
|
CONAN_BUILD_TYPES: Debug
|
|
|
|
|
|
install:
|
|
- set PATH=%PATH%;%PYTHON%/Scripts/
|
|
- pip.exe install conan --upgrade
|
|
- pip.exe install conan_package_tools bincrafters_package_tools
|
|
- conan user # It creates the conan data directory
|
|
|
|
test_script:
|
|
- python build.py
|