41 lines
902 B
YAML
41 lines
902 B
YAML
|
|
env:
|
|
global:
|
|
- CONAN_REFERENCE: "MofileReader/1.0.0"
|
|
- CONAN_USERNAME: "anotherfoxguy"
|
|
- CONAN_LOGIN_USERNAME: "anotherfoxguy"
|
|
- CONAN_CHANNEL: "testing"
|
|
- CONAN_UPLOAD: "https://api.bintray.com/conan/anotherfoxguy/ror-dependencies"
|
|
|
|
linux: &linux
|
|
os: linux
|
|
sudo: required
|
|
language: python
|
|
python: "3.6"
|
|
services:
|
|
- docker
|
|
osx: &osx
|
|
os: osx
|
|
language: generic
|
|
matrix:
|
|
include:
|
|
- <<: *linux
|
|
env: CONAN_GCC_VERSIONS=5 CONAN_DOCKER_IMAGE=conanio/gcc5
|
|
|
|
- <<: *linux
|
|
env: CONAN_GCC_VERSIONS=6 CONAN_DOCKER_IMAGE=conanio/gcc6
|
|
|
|
- <<: *linux
|
|
env: CONAN_GCC_VERSIONS=7 CONAN_DOCKER_IMAGE=conanio/gcc7
|
|
|
|
- <<: *linux
|
|
env: CONAN_GCC_VERSIONS=8 CONAN_DOCKER_IMAGE=conanio/gcc8
|
|
|
|
install:
|
|
- chmod +x .travis/install.sh
|
|
- ./.travis/install.sh
|
|
|
|
script:
|
|
- chmod +x .travis/run.sh
|
|
- ./.travis/run.sh
|