forked from eclipse-cyclonedds/cyclonedds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
104 lines (99 loc) · 3.27 KB
/
azure-pipelines.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#
# Copyright(c) 2021 ADLINK Technology Limited and others
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License v. 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License
# v. 1.0 which is available at
# http://www.eclipse.org/org/documents/edl-v10.php.
#
# SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
#
trigger: [ '*' ]
pr: [ '*' ]
strategy:
matrix:
'Ubuntu 20.04 LTS with GCC 10 (Debug, x86_64)':
image: ubuntu-20.04
analyzer: on
sanitizer: address
cc: gcc-10
'Ubuntu 20.04 LTS with GCC 10 (Debug, x86_64, Iceoryx)':
image: ubuntu-20.04
#analyzer: on # disabled for now because of warnings
sanitizer: address
iceoryx: on
cc: gcc-10
'Ubuntu 20.04 LTS with GCC 10 (Release, x86_64)':
image: ubuntu-20.04
build_type: Release
cc: gcc-10
'Ubuntu 20.04 LTS with GCC 10 (Debug, x86_64, security only)':
image: ubuntu-20.04
ssl: off
lifespan: off
deadline: off
type_discovery: off
topic_discovery: off
sanitizer: address
cc: gcc-10
'Ubuntu 18.04 LTS with GCC 7 (Debug, x86_64)':
image: ubuntu-18.04
coverage: on
conanfile: conanfile102.txt
cc: gcc-7
'Ubuntu 20.04 LTS with Clang 10 (Debug, x86_64)':
image: ubuntu-20.04
analyzer: on
sanitizer: address
cc: clang-10
'Ubuntu 20.04 LTS with Clang 10 (Debug, x86_64, no security)':
image: ubuntu-20.04
security: off
sanitizer: address
cc: clang-10
'Ubuntu 20.04 LTS with Clang 10 (Release, x86_64, no topic discovery)':
image: ubuntu-20.04
build_type: Release
topic_discovery: off
cc: clang-10
'macOS 10.15 with Clang 12 (macOS 10.12, Release, x86_64)':
image: macOS-10.15
build_type: Release
macos_deployment_target: '10.12'
ssl: off
cc: clang
'macOS 10.15 with Clang 12 (Debug, x86_64)':
image: macOS-10.15
sanitizer: address
cc: clang
'macOS 10.15 with Clang 12 (Release, x86_64)':
image: macOS-10.15
build_type: Release
cc: clang
# disabled for now because 32-bit packages are missing
'Windows 2019 with Visual Studio 2019 (Visual Studio 2017, Debug, x86)':
arch: x86
image: windows-2019
conanfile: conanfile102.txt
generator: 'Visual Studio 16 2019'
toolset: v141
'Windows 2019 with Visual Studio 2019 (Debug, x86_64)':
image: windows-2019
generator: 'Visual Studio 16 2019'
'Windows 2019 with Visual Studio 2019 (Release, x86_64)':
image: windows-2019
build_type: Release
generator: 'Visual Studio 16 2019'
'Windows 2019 with GCC 10 (Debug, x86_64)':
image: windows-2019
build_type: Debug
generator: 'MinGW Makefiles'
cc: 'C:/msys64/mingw64/bin/gcc.exe'
cxx: 'C:/msys64/mingw64/bin/g++.exe'
pool:
vmImage: $(image)
variables:
cyclonedds_uri: '<CycloneDDS><Domain><Internal><EnableExpensiveChecks>rhc,whc</EnableExpensiveChecks><LivelinessMonitoring>true</LivelinessMonitoring></Internal><Tracing><Verbosity>config</Verbosity><OutputFile>stderr</OutputFile></Tracing></Domain></CycloneDDS>'
steps:
- template: /.azure/templates/build-test.yml