2019-07-27 16:58:55 +00:00
|
|
|
env:
|
|
|
|
global:
|
2019-07-28 20:59:58 +00:00
|
|
|
- CONAN_UPLOAD: "https://api.bintray.com/conan/steakhal/maintained"
|
2019-07-27 16:58:55 +00:00
|
|
|
- CONAN_BUILD_POLICY: "missing"
|
|
|
|
- CONAN_USERNAME: "steakhal"
|
2019-07-28 20:59:58 +00:00
|
|
|
- CONAN_CHANNEL: "stable"
|
2019-07-28 20:29:21 +00:00
|
|
|
- CONAN_UPLOAD_ONLY_WHEN_TAG: 1
|
2019-07-27 16:58:55 +00:00
|
|
|
|
|
|
|
linux: &linux
|
|
|
|
os: linux
|
|
|
|
dist: xenial
|
|
|
|
sudo: required
|
|
|
|
language: python
|
|
|
|
python: "3.6"
|
|
|
|
services:
|
|
|
|
- docker
|
|
|
|
|
|
|
|
osx: &osx
|
|
|
|
os: osx
|
|
|
|
language: generic
|
2018-03-27 09:03:12 +00:00
|
|
|
|
2019-07-27 16:58:55 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- <<: *linux
|
|
|
|
env: CONAN_GCC_VERSIONS=7 CONAN_DOCKER_IMAGE=conanio/gcc7
|
|
|
|
|
|
|
|
- <<: *linux
|
|
|
|
env: CONAN_GCC_VERSIONS=8 CONAN_DOCKER_IMAGE=conanio/gcc8
|
|
|
|
|
|
|
|
- <<: *linux
|
|
|
|
env: CONAN_GCC_VERSIONS=9 CONAN_DOCKER_IMAGE=conanio/gcc9
|
|
|
|
|
|
|
|
- <<: *linux
|
|
|
|
env: CONAN_CLANG_VERSIONS=5.0 CONAN_DOCKER_IMAGE=conanio/clang50
|
|
|
|
|
|
|
|
- <<: *linux
|
|
|
|
env: CONAN_CLANG_VERSIONS=6.0 CONAN_DOCKER_IMAGE=conanio/clang60
|
|
|
|
|
|
|
|
- <<: *linux
|
|
|
|
env: CONAN_CLANG_VERSIONS=7.0 CONAN_DOCKER_IMAGE=conanio/clang7
|
|
|
|
|
|
|
|
- <<: *linux
|
|
|
|
env: CONAN_CLANG_VERSIONS=8 CONAN_DOCKER_IMAGE=conanio/clang8
|
|
|
|
|
|
|
|
- <<: *osx
|
|
|
|
osx_image: xcode9.2
|
|
|
|
env: CONAN_APPLE_CLANG_VERSIONS=9.0
|
|
|
|
|
|
|
|
- <<: *osx
|
|
|
|
osx_image: xcode9.4
|
|
|
|
env: CONAN_APPLE_CLANG_VERSIONS=9.1
|
|
|
|
|
|
|
|
- <<: *osx
|
|
|
|
osx_image: xcode10.1
|
|
|
|
env: CONAN_APPLE_CLANG_VERSIONS=10.0
|
2018-08-07 16:34:56 +00:00
|
|
|
|
2018-04-30 03:00:05 +00:00
|
|
|
install:
|
2019-07-28 10:29:34 +00:00
|
|
|
- chmod +x .ci/install.sh
|
|
|
|
- ./.ci/install.sh
|
2018-05-25 14:07:50 +00:00
|
|
|
|
|
|
|
script:
|
2019-07-28 10:29:34 +00:00
|
|
|
- chmod +x .ci/run.sh
|
|
|
|
- ./.ci/run.sh
|