Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-bazel-testreports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
find ./ -name 'coverage.dat' -exec python3 "$LCOV_COBERTURA_SCRIPT" {} --output {}.xml \;

- name: Upload Cobertura Coverage Report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: cobertura-coverage-results-${{ matrix.place }}-${{ matrix.short_name }} test${{ matrix.os }}
path: './**/coverage.dat.xml'
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci-bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:
if: ${{ env.ENABLE_BAZEL_COVERAGE == 'true' && !startsWith(matrix.runs_on, 'windows') }}
run: bazelisk --output_user_root=${{ matrix.cache_path }} coverage ${{ matrix.bazel_target }}
- name: Upload test report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always() # Run even if the previous step fails
with:
name: junit-test-results-regular-${{ matrix.name }}
Expand All @@ -190,15 +190,15 @@ jobs:

retention-days: 90 # Maximum is 90d, default is repo settings.
- name: Upload coverage report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: ${{ always() && env.ENABLE_BAZEL_COVERAGE == 'true' && !startsWith(matrix.runs_on, 'windows') }} # Run even if the previous step fails
with:
name: lcov-coverage-results-regular-${{ matrix.name }}
path: 'bazel-testlogs/**/coverage.dat'

retention-days: 90 # Maximum is 90d, default is repo settings.
- name: Upload test log
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always() # Run even if the previous step fails
with:
name: junit-test-logs-regular-${{ matrix.name }}
Expand Down Expand Up @@ -336,7 +336,7 @@ jobs:
# BUILDBUDDY_ORG_API_KEY: ${{ secrets.BUILDBUDDY_ORG_API_KEY }}

- name: Upload test report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always() # Run even if the previous step fails
with:
name: junit-test-results-buildbuddy-${{ matrix.name }}
Expand All @@ -351,15 +351,15 @@ jobs:

retention-days: 90 # Maximum and default is 90d but can be shortened.
#- name: Upload coverage report
# uses: actions/upload-artifact@v4
# uses: actions/upload-artifact@v7
# if: ${{ always() && env.ENABLE_BAZEL_COVERAGE == 'true' && runner.os != 'Windows' }} # Run even if the previous step fails
# with:
# name: lcov-coverage-results-buildbuddy-${{ matrix.name }}
# path: 'bazel-testlogs/**/coverage.dat'

# retention-days: 90 # Maximum and default is 90d but can be shortened.
- name: Upload test log
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always() # Run even if the previous step fails
with:
name: junit-test-logs-buildbuddy-${{ matrix.name }}
Expand Down
Loading