gil/.ci/azure-pipelines/steps-install-conan.yml
Mateusz Łoskot ef1aa5c50f
Add build using VS2015 to Azure Pipelines (#263)
* Install latest CMake and Python on VS 2015 image.
* Remove libs/gil from installed Boost 1.68 to ensure GIL headers
  from the release are not accidentally used
2019-03-20 10:20:36 +01:00

18 lines
591 B
YAML

# Azure Pipelines for Boost.GIL
#
# Copyright 2018-2019 Mateusz Loskot <mateusz at loskot dot net>
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt)
#
parameters:
python: 'python' # default, if not specified
steps:
- script: |
${{ parameters.python }} --version
${{ parameters.python }} -m ensurepip
${{ parameters.python }} -m pip install --upgrade pip
${{ parameters.python }} -m pip install --upgrade conan
conan --version
displayName: 'Install Conan'