-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
52 lines (44 loc) · 1.02 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
env:
global:
- CONAN_USERNAME: "ltjax"
- CONAN_LOGIN_USERNAME: "ltjax"
- CONAN_CHANNEL: "testing"
- CONAN_UPLOAD: "https://api.bintray.com/conan/ltjax/conan"
- CONAN_USER_HOME: "/tmp/conan"
linux: &linux
os: linux
dist: xenial
language: cpp
addons:
apt:
update: true
sources:
- ubuntu-toolchain-r-test
packages:
- git
- build-essential
- python3-pip
- python3-setuptools
osx: &osx
os: osx
language: generic
matrix:
include:
- <<: *linux
env: GCC_VERSION=9 CONAN_GCC_VERSIONS=9 CONAN_BUILD_POLICY="missing"
- <<: *linux
env: GCC_VERSION=8 CONAN_GCC_VERSIONS=8
# macOS 10.15 is currently not supported by travis, but required by replay
# - <<: *osx
# osx_image: xcode11
# env: CONAN_APPLE_CLANG_VERSIONS=11.0
sudo: required
cache:
directories:
- $CONAN_USER_HOME
install:
- chmod +x .travis/install.sh
- ./.travis/install.sh
script:
- chmod +x .travis/run.sh
- ./.travis/run.sh