2025-07-19 15:57:54 +03:30
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: exec
|
2025-07-20 04:37:05 +00:00
|
|
|
name: amd64 — msvc
|
2025-07-20 05:52:32 +03:30
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- main
|
2025-07-19 15:57:54 +03:30
|
|
|
platform:
|
|
|
|
os: windows
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2025-07-20 04:37:05 +00:00
|
|
|
- name: unit tests
|
|
|
|
shell: powershell
|
|
|
|
commands:
|
2025-07-20 11:12:29 +00:00
|
|
|
- ./tools/ci/amd64/msvc/unit_tests.ps1
|
2025-07-19 15:57:54 +03:30
|
|
|
|
2025-07-17 08:20:48 +00:00
|
|
|
---
|
2025-07-11 13:02:30 +03:30
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
2025-07-20 04:37:05 +00:00
|
|
|
name: amd64 — gcc
|
2025-07-11 13:02:30 +03:30
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- main
|
|
|
|
|
|
|
|
steps:
|
2025-07-17 08:20:48 +00:00
|
|
|
- name: unit tests
|
2025-07-20 14:56:52 +03:30
|
|
|
image: amd64_gcc_unit_tests:latest
|
2025-07-11 13:04:38 +03:30
|
|
|
pull: if-not-exists
|
2025-07-11 13:02:30 +03:30
|
|
|
commands:
|
2025-07-20 11:12:29 +00:00
|
|
|
- ./tools/ci/amd64/gcc/unit_tests.sh
|
2025-07-14 08:45:09 +00:00
|
|
|
|
2025-07-17 08:20:48 +00:00
|
|
|
- name: valgrind
|
2025-07-20 14:56:52 +03:30
|
|
|
image: amd64_gcc_valgrind:latest
|
2025-07-16 11:03:42 +03:30
|
|
|
pull: if-not-exists
|
|
|
|
commands:
|
2025-07-20 11:12:29 +00:00
|
|
|
- ./tools/ci/amd64/gcc/valgrind.sh
|
2025-07-16 11:03:42 +03:30
|
|
|
|
2025-07-18 20:21:14 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
2025-07-20 04:37:05 +00:00
|
|
|
name: amd64 — clang
|
2025-07-18 20:21:14 +00:00
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- main
|
|
|
|
|
|
|
|
steps:
|
2025-07-20 14:56:52 +03:30
|
|
|
- name: code coverage
|
|
|
|
image: amd64_clang_coverage:latest
|
|
|
|
pull: if-not-exists
|
|
|
|
commands:
|
|
|
|
- ./tools/ci/amd64/clang/coverage.sh
|
|
|
|
|
2025-07-18 20:21:14 +00:00
|
|
|
- name: leak sanitizer
|
2025-07-20 14:56:52 +03:30
|
|
|
image: amd64_clang_lsan:latest
|
2025-07-18 20:21:14 +00:00
|
|
|
pull: if-not-exists
|
|
|
|
commands:
|
2025-07-20 11:12:29 +00:00
|
|
|
- ./tools/ci/amd64/clang/lsan.sh
|
|
|
|
|
|
|
|
- name: memory sanitizer
|
2025-07-20 14:56:52 +03:30
|
|
|
image: amd64_clang_msan:latest
|
2025-07-20 11:12:29 +00:00
|
|
|
pull: if-not-exists
|
|
|
|
commands:
|
|
|
|
- ./tools/ci/amd64/clang/msan.sh
|
2025-07-18 20:21:14 +00:00
|
|
|
|
2025-07-16 11:03:42 +03:30
|
|
|
---
|
2025-07-14 08:45:09 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: static analysis
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- main
|
|
|
|
|
|
|
|
steps:
|
2025-07-20 11:12:29 +00:00
|
|
|
- name: clang tidy
|
|
|
|
image: clang_tidy:latest
|
2025-07-14 08:45:09 +00:00
|
|
|
pull: if-not-exists
|
|
|
|
privileged: true
|
|
|
|
commands:
|
2025-07-20 11:12:29 +00:00
|
|
|
- ./tools/ci/static_analysis/clang_tidy.sh
|
2025-07-17 08:20:48 +00:00
|
|
|
|
|
|
|
- name: clang format
|
|
|
|
image: clang_format:latest
|
|
|
|
pull: if-not-exists
|
|
|
|
commands:
|
2025-07-20 11:12:29 +00:00
|
|
|
- ./tools/ci/static_analysis/clang_format.sh
|