light/.drone.yml
light7734 6ecb268196
Some checks reported errors
continuous-integration/drone/pr Build encountered an error
fix: formatting issues
2025-07-20 07:39:56 +03:30

92 lines
1.3 KiB
YAML

---
kind: pipeline
type: exec
name: amd64_msvc — tests
trigger:
branch:
- main
platform:
os: windows
arch: amd64
steps:
- name: tests
shell: powershell
commands:
- ./tools/ci/steps/amd64_msvc_tests.ps1
---
kind: pipeline
type: docker
name: amd64_gcc — tests
trigger:
branch:
- main
steps:
- name: tests
image: unit_tests:latest
pull: if-not-exists
commands:
- ./tools/ci/steps/amd64_gcc_tests.sh
---
kind: pipeline
type: docker
name: amd64_gcc — valgrind
trigger:
branch:
- main
steps:
- name: valgrind
image: valgrind:latest
pull: if-not-exists
commands:
- ./tools/ci/steps/amd64_gcc_valgrind.sh
---
kind: pipeline
type: docker
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
---
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
name: style
trigger:
branch:
- main
steps:
- name: clang format
image: clang_format:latest
pull: if-not-exists
commands:
- ./tools/ci/steps/style.sh