forked from Exiv2/exiv2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
86 lines (74 loc) · 1.8 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
language: cpp
git:
quiet: true
depth: 1
env:
global:
- COMMON_CMAKE_OPTIONS="-DEXIV2_ENABLE_WEBREADY=ON -DEXIV2_ENABLE_CURL=ON -DEXIV2_BUILD_UNIT_TESTS=ON -DEXIV2_TEAM_WARNINGS_AS_ERRORS=ON -DCMAKE_INSTALL_PREFIX=install"
matrix:
include:
- name: "Ubuntu 16.04 - gcc-5.4 (Release)"
os: linux
dist: xenial
sudo: required
compiler: gcc
env:
- BUILD_TYPE="Release"
- name: "Ubuntu 16.04 - gcc-5.4 (Debug)"
os: linux
dist: xenial
sudo: required
compiler: gcc
env:
- BUILD_TYPE="Debug"
- name: "Ubuntu 16.04 - gcc-5.4 with coverage"
os: linux
dist: xenial
sudo: required
compiler: gcc
env:
- WITH_COVERAGE=1
- BUILD_TYPE="Release"
- name: "Ubuntu 16.04 - gcc-5.4 with Valgrind"
os: linux
dist: xenial
sudo: required
compiler: gcc
env:
- WITH_VALGRIND=1
- BUILD_TYPE="Release"
- name: "Ubuntu 16.04 - gcc-5.4 with sanitizers"
os: linux
dist: xenial
sudo: required
compiler: gcc
env:
- WITH_SANITIZERS=1
- BUILD_TYPE="Release"
- name: "Ubuntu 16.04 - CLANG 7.0 (Release)"
os: linux
dist: xenial
sudo: required
compiler: clang
env:
- BUILD_TYPE="Release"
- name: "Ubuntu 16.04 - CLANG 7.0 (Debug)"
os: linux
dist: xenial
sudo: required
compiler: clang
env:
- BUILD_TYPE="Debug"
- name: "OS X 10.13 - XCode 10.2"
os: osx
osx_image: xcode10.2
compiler: clang
env:
- BUILD_TYPE="Release"
install: ./ci/install.sh
script: ./ci/run.sh
cache:
ccache: true
directories:
- conan # Conan installation folder
- $HOME/conanData # Conan storage location