From f67a4b0392ab0bfcdf7d38e30ebfb1fded8ee48e Mon Sep 17 00:00:00 2001 From: light7734 Date: Sun, 20 Jul 2025 14:56:52 +0330 Subject: [PATCH] ci: add clang code coverage step & fix image names --- .drone.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 283384d..af1a0fd 100644 --- a/.drone.yml +++ b/.drone.yml @@ -25,13 +25,13 @@ trigger: steps: - name: unit tests - image: unit_tests:latest + image: amd64_gcc_unit_tests:latest pull: if-not-exists commands: - ./tools/ci/amd64/gcc/unit_tests.sh - name: valgrind - image: valgrind:latest + image: amd64_gcc_valgrind:latest pull: if-not-exists commands: - ./tools/ci/amd64/gcc/valgrind.sh @@ -45,14 +45,20 @@ trigger: - main steps: +- name: code coverage + image: amd64_clang_coverage:latest + pull: if-not-exists + commands: + - ./tools/ci/amd64/clang/coverage.sh + - name: leak sanitizer - image: leak_sanitizer:latest + image: amd64_clang_lsan:latest pull: if-not-exists commands: - ./tools/ci/amd64/clang/lsan.sh - name: memory sanitizer - image: memory_sanitizer:latest + image: amd64_clang_msan:latest pull: if-not-exists commands: - ./tools/ci/amd64/clang/msan.sh