-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.travis.yml
44 lines (37 loc) · 814 Bytes
/
.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
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"
- CONAN_ARCHS: "x86_64"
_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
jobs:
include:
- <<: *linux
env: GCC_VERSION=9 CONAN_GCC_VERSIONS=9
- <<: *linux
env: GCC_VERSION=8 CONAN_GCC_VERSIONS=8
cache:
directories:
- $CONAN_USER_HOME
install:
- chmod +x .travis/install.sh
- ./.travis/install.sh
script:
- chmod +x .travis/run.sh
- ./.travis/run.sh