Skip to content
Merged
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
3 changes: 2 additions & 1 deletion .github/workflows/flakeFinder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ jobs:
env:
AWS_REGION: us-west-2
- name: Upload Errors
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Flaky test results
path: failed_tests/
overwrite: true
continue-on-error: true
12 changes: 8 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,19 @@ jobs:
sudo chown -R runner target
if: matrix.os == 'ubuntu-20.04'
- name: Upload Failed Test Report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: Failed Test Report ${{ matrix.os }}
path: target/surefire-reports
overwrite: true
- name: Upload Coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: matrix.os == 'ubuntu-20.04'
with:
name: Coverage Report ${{ matrix.os }}
path: target/jacoco-report
overwrite: true
- name: Convert Jacoco unit test report to Cobertura
run: python3 .github/scripts/cover2cover.py target/jacoco-report/jacoco.xml src/main/java > target/jacoco-report/cobertura.xml
if: matrix.os == 'ubuntu-20.04'
Expand All @@ -70,10 +72,11 @@ jobs:
mvn -ntp japicmp:cmp -DskipTests
if: github.event_name == 'pull_request' && matrix.os == 'ubuntu-20.04'
- name: Upload Compatibility Report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Binary Compatibility Report
path: target/japicmp/default-cli.html
overwrite: true
if: github.event_name == 'pull_request' && matrix.os == 'ubuntu-20.04'
- name: Build benchmark with Maven
# Changes can break the benchmark, so compile it now to make sure it is buildable
Expand All @@ -94,8 +97,9 @@ jobs:
cp target/jacoco-report/cobertura-it.xml ./pr/jacoco-report/cobertura-it.xml
if: github.event_name == 'pull_request' && matrix.os == 'ubuntu-20.04'
- name: Upload files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pr
path: pr/
overwrite: true
if: github.event_name == 'pull_request' && matrix.os == 'ubuntu-20.04'
Loading