From 15cd26429b4bda5b1a0514ce2c373ce2fa000b98 Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Tue, 20 Dec 2022 09:52:52 -0800 Subject: [PATCH] Switch to using stock gcovr 5.2 (#1174) * Test using stock gcovr Signed-off-by: Saikrishna Arcot * Use gcovr 5.2 Signed-off-by: Saikrishna Arcot Signed-off-by: Saikrishna Arcot --- .azure-pipelines/build-template.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.azure-pipelines/build-template.yml b/.azure-pipelines/build-template.yml index c6b6fbaa9..492f78ef2 100644 --- a/.azure-pipelines/build-template.yml +++ b/.azure-pipelines/build-template.yml @@ -124,14 +124,14 @@ jobs: - ${{ if eq(parameters.run_unit_test, true) }}: - script: | set -ex - git clone https://github.com/Spacetown/gcovr.git + git clone https://github.com/gcovr/gcovr.git cd gcovr/ - git checkout origin/recursive_search_file + git checkout 5.2 sudo pip3 install setuptools sudo python3 setup.py install cd .. sudo rm -rf gcovr - displayName: "Install gcovr 5.0 with recursive fix" + displayName: "Install gcovr 5.2 (for --exclude-throw-branches support)" - script: | set -ex make check