Skip to content

Commit

Permalink
Configuration: recover test reports (#2420)
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelcarmena authored Jun 22, 2021
1 parent bef6777 commit a5a6452
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,17 @@ jobs:
- name: Build
working-directory: arrow-libs
run: ./gradlew build
- name: "Prepare test reports"
if: ${{ always() }}
run: |
mkdir test-reports
for report in `ls -d arrow-libs/**/**/build/reports/tests`; do
module=$(echo $report | cut -d/ -f3)
cp -r $report test-reports/$module
done
- name: "Make test reports available to download"
if: ${{ always() }}
uses: actions/upload-artifact@v1
with:
name: test-reports
path: test-reports

0 comments on commit a5a6452

Please sign in to comment.