greyp9 commented on a change in pull request #5675:
URL: https://github.com/apache/nifi/pull/5675#discussion_r787946258
##########
File path: .github/workflows/ci-workflow.yml
##########
@@ -191,3 +216,14 @@ jobs:
run: >-
${{ env.MAVEN_COMMAND }}
${{ env.MAVEN_PROJECTS }}
+ - name: upload-on-failure
+ uses: actions/upload-artifact@v2
+ with:
+ name: surefire-reports-windows-fr
+ path: |
+ ./**/target/surefire-reports/*.txt
+ ./**/target/surefire-reports/*.xml
+ retention-days: 3
+ if: failure()
+ - name: System Information (after)
+ run: df
Review comment:
Yes. Here is a sample:
```
Filesystem 1K-blocks Used Available Use% Mounted on
C:/Program Files/Git 267921404 177176668 90744736 67% /
D: 14678012 1903272 12774740 13% /d
Filesystem 1K-blocks Used Available Use% Mounted on
C:/Program Files/Git 267921404 180273952 87647452 68% /
D: 14678012 12950624 1727388 89% /d
```
The first output is before a branch build, the second is from afterwards.
It looks like there is an issue with disk space availability that might need
to be addressed.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]