light/.drone.yml

87 lines
1.3 KiB
YAML
Raw Normal View History

---
kind: pipeline
type: exec
2025-07-20 07:28:21 +03:30
name: amd64_msvc — tests
2025-07-20 05:52:32 +03:30
trigger:
branch:
- main
platform:
os: windows
arch: amd64
steps:
2025-07-20 07:28:21 +03:30
- name: tests
2025-07-20 06:10:27 +03:30
shell: powershell
commands: ./tools/ci/steps/amd64_msvc_tests.ps1
---
2025-07-11 13:02:30 +03:30
kind: pipeline
type: docker
2025-07-20 07:28:21 +03:30
name: amd64_gcc — tests
2025-07-11 13:02:30 +03:30
trigger:
branch:
- main
steps:
2025-07-20 07:28:21 +03:30
- name: tests
image: unit_tests:latest
2025-07-11 13:04:38 +03:30
pull: if-not-exists
commands: ./tools/ci/steps/amd64_gcc_tests.sh
2025-07-16 11:03:42 +03:30
---
2025-07-16 11:03:42 +03:30
kind: pipeline
type: docker
2025-07-20 07:28:21 +03:30
name: amd64_gcc — valgrind
2025-07-16 11:03:42 +03:30
trigger:
branch:
- main
2025-07-16 11:03:42 +03:30
steps:
- name: valgrind
image: valgrind:latest
2025-07-16 11:03:42 +03:30
pull: if-not-exists
commands: ./tools/ci/steps/amd64_gcc_valgrind.sh
2025-07-16 11:03:42 +03:30
---
kind: pipeline
type: docker
2025-07-20 07:28:21 +03:30
name: amd64_clang — sanitizer — leak
trigger:
branch:
- main
steps:
- name: leak sanitizer
image: leak_sanitizer:latest
pull: if-not-exists
commands: ./tools/ci/steps/amd64_clang_sanitizer_leak.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
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
commands: ./tools/ci/steps/style.sh