light/.drone.yml

84 lines
1.2 KiB
YAML
Raw Permalink Normal View History

---
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
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:
2025-07-20 08:00:23 +03:30
- ./tools/ci/steps/amd64/msvc/unit-tests.ps1
---
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
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
- 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
---
kind: pipeline
type: docker
2025-07-20 07:58:41 +03:30
name: amd64 — clang
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-16 11:03:42 +03:30
---
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
---
kind: pipeline
type: docker
2025-07-20 07:28:21 +03:30
name: style
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