Skip to content

Commit 9b58cea

Browse files
author
Release Manager
committed
gh-38687: Fix broken coverage ci <!-- ^ Please provide a concise and informative title. --> <!-- ^ Don't put issue numbers in the title, do this in the PR description below. --> <!-- ^ For example, instead of "Fixes #12345" use "Introduce new method to calculate 1 + 2". --> <!-- v Describe your changes below in detail. --> <!-- v Why is this change required? What problem does it solve? --> <!-- v If this PR resolves an open issue, please link to it here. For example, "Fixes #12345". --> FIx broken coverage ci, as seen in https://github.com/sagemath/sage/acti ons/runs/10953419582/job/30414872650?pr=38659 Test run: https://github.com/kwankyu/sage/actions/runs/10960553553 ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [x] The title is concise and informative. - [x] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation and checked the documentation preview. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on. For example, --> <!-- - #12345: short description why this is a dependency --> <!-- - #34567: ... --> URL: #38687 Reported by: Kwankyu Lee Reviewer(s): Frédéric Chapoton
2 parents e9ded51 + 12fb7ba commit 9b58cea

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -442,8 +442,11 @@ jobs:
442442
if: (success() || failure()) && steps.container.outcome == 'success'
443443
uses: actions/upload-artifact@v4
444444
with:
445+
# The path .coverage is a directory that contains the combined coverage
446+
# data file .coverage, which is a hidden file because of the leading dot
445447
name: coverage-${{ steps.copy-coverage.outputs.tests_id }}
446448
path: .coverage
449+
include-hidden-files: true
447450

448451
coverage-report:
449452
runs-on: ubuntu-latest
@@ -530,11 +533,11 @@ jobs:
530533
# Combining
531534

532535
- name: Download coverage artifacts
536+
if: (success() || failure()) && steps.container.outcome == 'success'
533537
uses: actions/download-artifact@v4
534538
with:
535539
path: .coverage
536540
pattern: coverage-*
537-
if: (success() || failure()) && steps.container.outcome == 'success'
538541

539542
- name: Coverage report
540543
if: (success() || failure()) && steps.container.outcome == 'success'

0 commit comments

Comments
 (0)