ci: major refactors & add msvc check #8
1 changed files with 12 additions and 6 deletions
18
.drone.yml
18
.drone.yml
|
@ -12,7 +12,8 @@ platform:
|
||||||
steps:
|
steps:
|
||||||
- name: tests
|
- name: tests
|
||||||
shell: powershell
|
shell: powershell
|
||||||
commands: ./tools/ci/steps/amd64_msvc_tests.ps1
|
commands:
|
||||||
|
- ./tools/ci/steps/amd64_msvc_tests.ps1
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
|
@ -26,7 +27,8 @@ steps:
|
||||||
- name: tests
|
- name: tests
|
||||||
image: unit_tests:latest
|
image: unit_tests:latest
|
||||||
pull: if-not-exists
|
pull: if-not-exists
|
||||||
commands: ./tools/ci/steps/amd64_gcc_tests.sh
|
commands:
|
||||||
|
- ./tools/ci/steps/amd64_gcc_tests.sh
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
|
@ -40,7 +42,8 @@ steps:
|
||||||
- name: valgrind
|
- name: valgrind
|
||||||
image: valgrind:latest
|
image: valgrind:latest
|
||||||
pull: if-not-exists
|
pull: if-not-exists
|
||||||
commands: ./tools/ci/steps/amd64_gcc_valgrind.sh
|
commands:
|
||||||
|
- ./tools/ci/steps/amd64_gcc_valgrind.sh
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
|
@ -54,7 +57,8 @@ steps:
|
||||||
- name: leak sanitizer
|
- name: leak sanitizer
|
||||||
image: leak_sanitizer:latest
|
image: leak_sanitizer:latest
|
||||||
pull: if-not-exists
|
pull: if-not-exists
|
||||||
commands: ./tools/ci/steps/amd64_clang_sanitizer_leak.sh
|
commands:
|
||||||
|
- ./tools/ci/steps/amd64_clang_sanitizer_leak.sh
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
|
@ -69,7 +73,8 @@ steps:
|
||||||
image: static_analysis:latest
|
image: static_analysis:latest
|
||||||
pull: if-not-exists
|
pull: if-not-exists
|
||||||
privileged: true
|
privileged: true
|
||||||
commands: ./tools/ci/steps/static_analysis.sh
|
commands:
|
||||||
|
- ./tools/ci/steps/static_analysis.sh
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
|
@ -83,4 +88,5 @@ steps:
|
||||||
- name: clang format
|
- name: clang format
|
||||||
image: clang_format:latest
|
image: clang_format:latest
|
||||||
pull: if-not-exists
|
pull: if-not-exists
|
||||||
commands: ./tools/ci/steps/style.sh
|
commands:
|
||||||
|
- ./tools/ci/steps/style.sh
|
||||||
|
|
Loading…
Add table
Reference in a new issue