mirror of
https://github.com/mpusz/mp-units.git
synced 2025-06-25 01:01:33 +02:00
35 lines
774 B
YAML
35 lines
774 B
YAML
env:
|
|
global:
|
|
- CONAN_USERNAME: "mpusz"
|
|
- CONAN_LOGIN_USERNAME: "mpusz"
|
|
- CONAN_CHANNEL: "testing"
|
|
- CONAN_UPLOAD: "https://api.bintray.com/conan/mpusz/conan-mpusz "
|
|
- CONAN_STABLE_BRANCH_PATTERN: "release/*"
|
|
- CONAN_UPLOAD_ONLY_WHEN_STABLE: 0
|
|
- CONAN_DOCKER_32_IMAGES: 1
|
|
|
|
linux: &linux
|
|
os: linux
|
|
dist: xenial
|
|
language: python
|
|
python: "3.7"
|
|
services:
|
|
- docker
|
|
osx: &osx
|
|
os: osx
|
|
language: generic
|
|
matrix:
|
|
include:
|
|
- <<: *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
|