Skip to content

Commit 856b1ac

Browse files
yrodieremarko-bekhta
authored andcommitted
Don't upload test reports as artifacts
We're using Develocity for that.
1 parent 131d1c0 commit 856b1ac

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -165,21 +165,3 @@ jobs:
165165
run: ./ci/docker-cleanup.sh
166166
- name: Omit produced artifacts from build cache
167167
run: rm -r ~/.m2/repository/org/hibernate/search
168-
# Workaround for https://github.com/actions/upload-artifact/issues/240
169-
- name: List build reports to upload (if build failed)
170-
if: ${{ failure() || cancelled() }}
171-
# The weird syntax is because we're setting a multiline environment variable
172-
# See https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#example-of-a-multiline-string
173-
run: |
174-
{
175-
echo 'buildReportPaths<<EOF'
176-
find . -path '**/*-reports'
177-
echo EOF
178-
} >> "$GITHUB_ENV"
179-
- name: Upload build reports (if build failed)
180-
uses: actions/upload-artifact@v4
181-
if: ${{ failure() || cancelled() }}
182-
with:
183-
name: ${{ format('build-reports-{0}', matrix.os.name ) }}
184-
path: ${{ env.buildReportPaths }}
185-
retention-days: 7

0 commit comments

Comments
 (0)