Update cppbuilder image
Some checks failed
continuous-integration/drone Build is failing

This commit is contained in:
zvon 2022-09-30 22:19:19 +02:00
parent 0f0bbf077d
commit a2ada402e9

View File

@ -8,13 +8,13 @@ platform:
steps:
- name: build
image: docker.zvon.tech/cppbuilder:v0.09
image: docker.zvon.tech/cppbuilder:v0.10
commands:
- export CXX=g++
- cmake .
- cmake --build .
- name: coverage
image: docker.zvon.tech/cppbuilder:v0.09
image: docker.zvon.tech/cppbuilder:v0.10
commands:
- ./test
- "find . -type f -name \"*.gcno\" -execdir gcov -pb -r {} +"
@ -27,7 +27,7 @@ steps:
status:
- success
- name: formatting-check
image: docker.zvon.tech/cppbuilder:v0.09
image: docker.zvon.tech/cppbuilder:v0.10
commands:
- find . -path "./build" -prune -or -path "./.cache" -prune -or -iname "*.cpp" -or -iname "*.hpp" -print | xargs -P0 -I{} clang-format -style=file --dry-run -Werror {}
when: