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-21 09:37:44 +00:00
|
|
|
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-21 09:37:44 +00:00
|
|
|
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-21 09:37:44 +00:00
|
|
|
- name: code coverage
|
|
|
|
image: amd64_clang_coverage:latest
|
|
|
|
pull: if-not-exists
|
|
|
|
environment:
|
|
|
|
CODECOV_TOKEN:
|
|
|
|
from_secret: CODECOV_TOKEN
|
|
|
|
commands:
|
|
|
|
- ./tools/ci/amd64/clang/coverage.sh
|
|
|
|
|
2025-07-18 20:21:14 +00:00
|
|
|
- name: leak sanitizer
|
2025-07-21 09:37:44 +00:00
|
|
|
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-21 09:37:44 +00:00
|
|
|
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
|
2025-09-05 11:31:45 +03:30
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: documentation — development
|
|
|
|
node:
|
|
|
|
environment: ryali
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- main
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build and deploy
|
|
|
|
image: documentation:latest
|
|
|
|
pull: if-not-exists
|
|
|
|
commands:
|
|
|
|
- pwd
|
|
|
|
- cd docs
|
|
|
|
- mkdir generated
|
|
|
|
- touch generated/changelogs.rst
|
|
|
|
- touch generated/api.rst
|
|
|
|
- sphinx-build -M html . .
|
|
|
|
|
|
|
|
- rm -rf /light_docs_dev/*
|
|
|
|
- mv ./html/* /light_docs_dev/
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: documentation — production
|
|
|
|
node:
|
|
|
|
environment: ryali
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build and deploy
|
|
|
|
image: documentation:latest
|
|
|
|
pull: if-not-exists
|
|
|
|
commands:
|
|
|
|
- pwd
|
|
|
|
- cd docs
|
|
|
|
- mkdir generated
|
|
|
|
- touch generated/changelogs.rst
|
|
|
|
- touch generated/api.rst
|
|
|
|
- sphinx-build -M html . .
|
|
|
|
|
|
|
|
- rm -rf /light_docs/*
|
|
|
|
- mv ./html/* /light_docs/
|