File tree Expand file tree Collapse file tree 2 files changed +14
-7
lines changed Expand file tree Collapse file tree 2 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 1
- # Global defaults
1
+ # ## Global defaults
2
+
2
3
timeout_in : 120m # https://cirrus-ci.org/faq/#instance-timed-out
3
4
container :
4
5
# https://cirrus-ci.org/faq/#are-there-any-limits
12
13
TEST_RUNNER_PORT_MIN : " 14000" # Must be larger than 12321, which is used for the http cache. See https://cirrus-ci.org/guide/writing-tasks/#http-cache
13
14
CCACHE_SIZE : " 200M"
14
15
CCACHE_DIR : " /tmp/ccache_dir"
15
- # Global task template
16
+
17
+ # ## Global task template
18
+
16
19
# https://cirrus-ci.org/guide/tips-and-tricks/#sharing-configuration-between-tasks
17
20
global_task_template : &GLOBAL_TASK_TEMPLATE
18
21
ccache_cache :
@@ -31,6 +34,7 @@ global_task_template: &GLOBAL_TASK_TEMPLATE
31
34
- git merge FETCH_HEAD # Merge base to detect silent merge conflicts
32
35
ci_script :
33
36
- ./ci/test_run_all.sh
37
+
34
38
# task:
35
39
# name: "Windows"
36
40
# windows_container:
@@ -47,6 +51,14 @@ global_task_template: &GLOBAL_TASK_TEMPLATE
47
51
# install_script:
48
52
# - choco install python --version=3.7.7 -y
49
53
54
+ task :
55
+ name : ' x86_64 Linux [GOAL: install] [focal] [depends, sanitizers: thread (TSan), no gui]'
56
+ << : *GLOBAL_TASK_TEMPLATE
57
+ container :
58
+ image : ubuntu:focal
59
+ env :
60
+ FILE_ENV : " ./ci/test/00_setup_env_native_tsan.sh"
61
+
50
62
task :
51
63
name : ' x86_64 Linux [GOAL: install] [focal] [no depends, only system libs, sanitizers: address/leak (ASan + LSan) + undefined (UBSan) + integer]'
52
64
<< : *GLOBAL_TASK_TEMPLATE
Original file line number Diff line number Diff line change 99
99
env : >-
100
100
FILE_ENV="./ci/test/00_setup_env_native_qt5.sh"
101
101
102
- - stage : test
103
- name : ' x86_64 Linux [GOAL: install] [focal] [depends, sanitizers: thread (TSan), no gui]'
104
- env : >-
105
- FILE_ENV="./ci/test/00_setup_env_native_tsan.sh"
106
-
107
102
- stage : test
108
103
name : ' x86_64 Linux [GOAL: install] [focal] [depends, sanitizers: memory (MSan)]'
109
104
env : >-
You can’t perform that action at this time.
0 commit comments