diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-06-07 03:55:49 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-11-03 20:26:58 +0100 |
commit | fa8e494554d0f5f8f48bb33ce96a8d7de9b95e31 (patch) | |
tree | 9da0065a92f738d03d807db6e0d2c749ad968e66 /.cirrus.yml | |
parent | 218fe60d91a9190aa0ee561479044df368214766 (diff) |
ci: Run ci configs on cirrus
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 5dc7e7995a..f334da5c14 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -53,6 +53,14 @@ global_task_template: &GLOBAL_TASK_TEMPLATE # - choco install python --version=3.7.7 -y task: + name: 'x86_64 Linux [GOAL: install] [bionic] [C++17, previous releases, uses qt5 dev package and some depends packages] [unsigned char]' + << : *GLOBAL_TASK_TEMPLATE + container: + image: ubuntu:bionic + env: + FILE_ENV: "./ci/test/00_setup_env_native_qt5.sh" + +task: name: 'x86_64 Linux [GOAL: install] [focal] [depends, sanitizers: thread (TSan), no gui]' << : *GLOBAL_TASK_TEMPLATE container: @@ -64,6 +72,14 @@ task: FILE_ENV: "./ci/test/00_setup_env_native_tsan.sh" task: + name: 'x86_64 Linux [GOAL: install] [focal] [depends, sanitizers: memory (MSan)]' + << : *GLOBAL_TASK_TEMPLATE + container: + image: ubuntu:focal + env: + FILE_ENV: "./ci/test/00_setup_env_native_msan.sh" + +task: name: 'x86_64 Linux [GOAL: install] [focal] [no depends, only system libs, sanitizers: address/leak (ASan + LSan) + undefined (UBSan) + integer]' << : *GLOBAL_TASK_TEMPLATE container: @@ -72,9 +88,33 @@ task: FILE_ENV: "./ci/test/00_setup_env_native_asan.sh" task: + name: 'x86_64 Linux [GOAL: install] [focal] [no depends, only system libs, sanitizers: fuzzer,address,undefined]' + << : *GLOBAL_TASK_TEMPLATE + container: + image: ubuntu:focal + env: + FILE_ENV: "./ci/test/00_setup_env_native_fuzz.sh" + +task: name: 'x86_64 Linux [GOAL: install] [focal] [no depends, only system libs, fuzzers under valgrind]' << : *GLOBAL_TASK_TEMPLATE container: image: ubuntu:focal env: FILE_ENV: "./ci/test/00_setup_env_native_fuzz_with_valgrind.sh" + +task: + name: 'x86_64 Linux [GOAL: install] [focal] [multiprocess]' + << : *GLOBAL_TASK_TEMPLATE + container: + image: ubuntu:focal + env: + FILE_ENV: "./ci/test/00_setup_env_native_multiprocess.sh" + +task: + name: 'macOS 10.12 [GOAL: deploy] [no functional tests]' + << : *GLOBAL_TASK_TEMPLATE + container: + image: ubuntu:bionic + env: + FILE_ENV: "./ci/test/00_setup_env_mac.sh" |