Skip to content

Commit

Permalink
[build] Add buildpulse for flaky test analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
sushantmane committed Dec 12, 2024
1 parent 08da960 commit 40d4dac
Show file tree
Hide file tree
Showing 2 changed files with 512 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 @@ -66,3 +66,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: 100582612927
repository: 100441445875
path: |
**/TEST-*.xml
key: ${{ secrets.BUILDPULSE_ACCESS_KEY_ID }}
secret: ${{ secrets.BUILDPULSE_SECRET_ACCESS_KEY }}
Loading

0 comments on commit 40d4dac

Please sign in to comment.