From c6f538a99c46c1dd7ea1400ee6c617b30331a99b Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sat, 16 Nov 2024 11:50:05 +0100 Subject: [PATCH] more debug info --- .github/workflows/CICD.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 11ebe8a19ff..1cc20099dd9 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -1043,7 +1043,8 @@ jobs: COVERAGE_REPORT_FILE="${COVERAGE_REPORT_DIR}/lcov.info" mkdir -p "${COVERAGE_REPORT_DIR}" # display coverage files (for debug) - ls -al ${{ github.workspace }}/build/ + du -h ${{ github.workspace }}/build/ + grcov --version ls -al target/ ls -al target/debug grcov ${{ github.workspace }}/build/ --output-type files -b target/debug/ --ignore build.rs --ignore "vendor/*" --ignore "/*" --ignore "[a-zA-Z]:/*" --excl-br-line "^\s*((debug_)?assert(_eq|_ne)?!|#\[derive\()" | sort --unique