From cbb5fadd3e30be7766253eda3a9aced8b3d23aac Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Mon, 22 Sep 2025 08:48:28 -0700 Subject: [PATCH 1/2] Update ci.yaml --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e29aecf1..0a084116 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -64,7 +64,7 @@ jobs: - run: bazel coverage --combined_report=lcov //src/... - uses: hrishikesh-kadam/setup-lcov@6c1aa0cc9e1c02f9f58f01ac599f1064ccc83470 # v1 # The github-actions-report-lcov doesn't follow symlinks, so get an absolute path - - run: echo "output_path=$(bazel info output_path)" >> $GITHUB_ENV + - run: echo "testlogs=$(bazel info testlogs)" >> $GITHUB_ENV - name: Report code coverage if: github.event.pull_request.head.repo.fork == false # Forks always have read-only tokens uses: zgosalvez/github-actions-report-lcov@5989987f8058a03137e90bc16f9c0baaac5e069a # v4.1.22 @@ -73,7 +73,7 @@ jobs: working-directory: e2e/use_release # Point to the already-merged data file Bazel produces with --combined_report=lcov # Follows https://bazel.build/configure/coverage#running_coverage - coverage-files: "${{ env.output_path }}/_coverage/_coverage_report.dat" + coverage-files: "${{ env.testlogs }}/**/coverage.dat" github-token: ${{ secrets.GITHUB_TOKEN }} update-comment: true From fcb6bb281b796295441556e885169df7ce0efc3a Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Mon, 22 Sep 2025 08:51:53 -0700 Subject: [PATCH 2/2] Update ci.yaml --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0a084116..72af4a1c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -60,7 +60,7 @@ jobs: working-directory: e2e/use_release steps: - uses: actions/checkout@v4 - - run: ./minimal_download_test.sh + # - run: ./minimal_download_test.sh - run: bazel coverage --combined_report=lcov //src/... - uses: hrishikesh-kadam/setup-lcov@6c1aa0cc9e1c02f9f58f01ac599f1064ccc83470 # v1 # The github-actions-report-lcov doesn't follow symlinks, so get an absolute path