Skip to content

Commit

Permalink
Add buildpulse
Browse files Browse the repository at this point in the history
  • Loading branch information
sushantmane committed Oct 28, 2024
1 parent 30999ea commit 28d3dee
Show file tree
Hide file tree
Showing 2 changed files with 528 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/rawWorkflows/gh-ci-parameterized-flow.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,19 @@
name: ${{ github.job }}
path: ${{ github.job }}-jdk${{ matrix.jdk }}-logs.tar.gz
retention-days: 30
- name: Process all test XML files
run: |
for file in $(find . -name "TEST-*.xml"); do
# Process each file
echo "Processing $file"
done
- name: Upload test results to BuildPulse for flaky test detection
if: '!cancelled()' # Run this step even when the tests fail. Skip if the workflow is cancelled.
uses: buildpulse/buildpulse-action@main
with:
account: 7715725
repository: 540916718
path: |
**/TEST-*.xml
key: ${{ secrets.BUILDPULSE_ACCESS_KEY_ID }}
secret: ${{ secrets.BUILDPULSE_SECRET_ACCESS_KEY }}
Loading

0 comments on commit 28d3dee

Please sign in to comment.