Compare commits
2 commits
4e6cd1266c
...
a5a8c8571b
Author | SHA1 | Date | |
---|---|---|---|
a5a8c8571b | |||
e024453717 |
2 changed files with 7 additions and 2 deletions
|
@ -13,7 +13,7 @@ steps:
|
|||
- name: unit tests
|
||||
shell: powershell
|
||||
commands:
|
||||
- ./tools/ci/amd64/msvc/unit-tests.ps1
|
||||
- ./tools/ci/amd64/msvc/unit_tests.ps1
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
|
@ -28,7 +28,7 @@ steps:
|
|||
image: unit_tests:latest
|
||||
pull: if-not-exists
|
||||
commands:
|
||||
- ./tools/ci/amd64/gcc/unit-tests.sh
|
||||
- ./tools/ci/amd64/gcc/unit_tests.sh
|
||||
|
||||
- name: valgrind
|
||||
image: valgrind:latest
|
||||
|
|
|
@ -4,6 +4,11 @@ set -e
|
|||
cd $(git rev-parse --show-toplevel)/
|
||||
rm -rf ./build
|
||||
|
||||
echo 'Static analysis is currently disabled as code is filled with failing clang-tidy checks'
|
||||
echo 'Runng this would be a waste of CPU cycles and electricty'
|
||||
echo 'Fix the checks before removing these lines'
|
||||
exit 1
|
||||
|
||||
conan build . \
|
||||
-c tools.system.package_manager:mode=install \
|
||||
-c tools.cmake.cmaketoolchain:generator=Ninja \
|
||||
|
|
Loading…
Add table
Reference in a new issue