2025-07-19 15:57:54 +03:30
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: exec
|
2025-07-20 07:58:41 +03:30
|
|
|
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 07:58:41 +03:30
|
|
|
- name: unit tests
|
2025-07-20 06:10:27 +03:30
|
|
|
shell: powershell
|
2025-07-20 07:39:56 +03:30
|
|
|
commands:
|
|
|
|
- ./tools/ci/steps/amd64_msvc_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 07:58:41 +03:30
|
|
|
name: amd64 — gcc
|
2025-07-11 13:02:30 +03:30
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- main
|
|
|
|
|
|
|
|
steps:
|
2025-07-20 07:58:41 +03:30
|
|
|
- name: unit tests
|
2025-07-17 08:20:48 +00:00
|
|
|
image: unit_tests:latest
|
2025-07-11 13:04:38 +03:30
|
|
|
pull: if-not-exists
|
2025-07-20 07:39:56 +03:30
|
|
|
commands:
|
2025-07-20 07:58:41 +03:30
|
|
|
- ./tools/ci/steps/amd64/gcc/unit-tests.sh
|
2025-07-16 11:03:42 +03:30
|
|
|
|
2025-07-17 08:20:48 +00:00
|
|
|
- name: valgrind
|
|
|
|
image: valgrind:latest
|
2025-07-16 11:03:42 +03:30
|
|
|
pull: if-not-exists
|
2025-07-20 07:39:56 +03:30
|
|
|
commands:
|
2025-07-20 07:58:41 +03:30
|
|
|
- ./tools/ci/steps/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 07:58:41 +03:30
|
|
|
name: amd64 — clang
|
2025-07-18 20:21:14 +00:00
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- main
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: leak sanitizer
|
|
|
|
image: leak_sanitizer:latest
|
|
|
|
pull: if-not-exists
|
2025-07-20 07:39:56 +03:30
|
|
|
commands:
|
2025-07-20 07:58:41 +03:30
|
|
|
- ./tools/ci/steps/amd64/clang/lsan.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:
|
|
|
|
- name: static_analysis
|
|
|
|
image: static_analysis:latest
|
|
|
|
pull: if-not-exists
|
|
|
|
privileged: true
|
2025-07-20 07:39:56 +03:30
|
|
|
commands:
|
|
|
|
- ./tools/ci/steps/static_analysis.sh
|
2025-07-17 08:20:48 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
2025-07-20 07:28:21 +03:30
|
|
|
name: style
|
2025-07-17 08:20:48 +00:00
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- main
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: clang format
|
|
|
|
image: clang_format:latest
|
|
|
|
pull: if-not-exists
|
2025-07-20 07:39:56 +03:30
|
|
|
commands:
|
|
|
|
- ./tools/ci/steps/style.sh
|