summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorYuval Peress <peress@google.com>2021-11-17 16:12:50 -0700
committerCommit Bot <commit-bot@chromium.org>2021-11-18 20:40:31 +0000
commitf91fed25a84330e829e874b3207852cf2b526725 (patch)
tree824226ac241db92f87a68974f8c416dc4cf7e388 /.gitlab-ci.yml
parentfc2f5e6b19a19764edc83e7a2fec5654256befe7 (diff)
downloadchrome-ec-f91fed25a84330e829e874b3207852cf2b526725.tar.gz
zephyr: gitlab: filter zephyr/drivers/** directories
Remove the drivers written under zephyr/drivers/ from the code coverage. These drivers are in the process of being migrated upstream and the tests will be done upstream as well. Additionally, adding emulators to support this in a host test will be too difficult since many dependencies in the Zephyr build are SOC and SOC_FAMILY dependent. BRANCH=none BUG=none TEST=none Signed-off-by: Yuval Peress <peress@google.com> Change-Id: I27bcc31e5ee474aff2be050b8ef8289a1512b6cc Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3288905 Reviewed-by: Jeremy Bettis <jbettis@chromium.org>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4de21b7760..8936070470 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -180,7 +180,7 @@ merged_coverage:
needs: ["ec_coverage", "zephyr_coverage"]
script:
- lcov -o build/merged.info -a build/coverage/lcov.info -a build/zcoverage/lcov.info
- - lcov -o build/merged_no_zephyr.info -r build/merged.info "${ZEPHYR_ROOT}/*" "${MODULES_DIR}/*" '/usr/include/x86_64-linux-gnu/*'
+ - lcov -o build/merged_no_zephyr.info -r build/merged.info "${ZEPHYR_ROOT}/*" "${MODULES_DIR}/*" "zephyr/drivers/*" '/usr/include/x86_64-linux-gnu/*'
artifacts:
paths:
- build/*.info