From 445a90fb7879b5e273376364e1be2181c5cf34e9 Mon Sep 17 00:00:00 2001 From: Michal Nowak Date: Mon, 30 May 2022 21:23:47 +0200 Subject: [PATCH] Help gcovr find contrib files --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5c41fa9f78..655e15014c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1458,6 +1458,8 @@ gcov: - for SRC in dns isc; do for DST in dns isc ns; do cp -f "lib/${SRC}/include/${SRC}"/*.h "lib/${DST}/"; done; done - find bin lib -maxdepth 1 -mindepth 1 -type d -exec cp -f lib/isc/include/isc/buffer.h "{}" \; - cp -f lib/isc/include/isc/buffer.h lib/isc/netmgr/buffer.h + # Help gcovr find dlz_dbi.c file + - for DST in ldap mysql mysqldyn sqlite3 wildcard; do cp contrib/dlz/modules/common/dlz_dbi.c "contrib/dlz/modules/${DST}"; done # Generate XML file in the Cobertura XML format suitable for use by GitLab # for the purpose of displaying code coverage information in the diff view # of a given merge request.