From 855f54d15c1af403ebbeff9366275f72660bd0c8 Mon Sep 17 00:00:00 2001 From: Paul Colby Date: Sun, 22 Dec 2024 19:44:34 +1100 Subject: [PATCH] Skip Windows test results for now --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 696a39a41..7b92933b5 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -650,7 +650,7 @@ jobs: # Update source code paths from macOS tracefiles to match Linux. sed -i -Ee 's|^SF:/Users|SF:/home|' artifacts/*.macos-*/**/coverage.info # Update source code paths from Windows tracefiles to match Linux, and remove all \r chars from line endings. - sed -i -Ee 's|\r$||' -e 's|\\|/|g' -e 's|^SF:D:/a|SF:/home/runner/work|' artifacts/*.win.*/**/coverage.info + #sed -i -Ee 's|\r$||' -e 's|\\|/|g' -e 's|^SF:D:/a|SF:/home/runner/work|' artifacts/*.win.*/**/coverage.info # Combine all tracefiles into one. lcov $(find artifacts -name '*.info' -type f -printf '-a %p\n') -o coverage.info # Generate the HTML report.