forked from microsoft/CCF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.multi-thread.yml
48 lines (43 loc) · 1.3 KB
/
.multi-thread.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
trigger:
batch: true
branches:
include:
- main
pr:
branches:
include:
- main
paths:
include:
- .multi-thread.yml
- .threading_canary
resources:
containers:
- container: virtual
image: ccfmsrc.azurecr.io/ccf/ci:27-04-2023-virtual-clang15
options: --publish-all --cap-add NET_ADMIN --cap-add NET_RAW --cap-add SYS_PTRACE -v /lib/modules:/lib/modules:ro
jobs:
- template: .azure-pipelines-templates/configure.yml
- template: .azure-pipelines-templates/common.yml
parameters:
target: Virtual
env:
container: virtual
pool: 1es-dv4-focal
cmake_args: "-DCOMPILE_TARGET=virtual -DWORKER_THREADS=2"
cmake_env: "CC=`which clang-15` CXX=`which clang++-15`"
suffix: "MultiThread"
artifact_name: "MultiThread"
ctest_filter: '-LE "perf"'
depends_on: configure
- template: .azure-pipelines-templates/common.yml
parameters:
target: Virtual
env:
container: virtual
pool: 1es-dv4-focal
cmake_args: "-DCOMPILE_TARGET=virtual -DWORKER_THREADS=2 -DCMAKE_BUILD_TYPE=RelWithDebInfo -DTSAN=ON -DLVI_MITIGATIONS=OFF"
cmake_env: "CC=`which clang-15` CXX=`which clang++-15`"
suffix: "MultiThreadTsan"
artifact_name: "MultiThreadTsan"
depends_on: configure