We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upon visiting https://github.com/radvd-project/radvd/actions and clicking on failed Linux build job there is:
FAIL: check_all ============================================================================ Testsuite summary for radvd 2.20_rc1 ============================================================================ # TOTAL: 1 # PASS: 0 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 ============================================================================ See ./test-suite.log ============================================================================
That ./test-suite.log is not available as build artifact.
./test-suite.log
So this issue reporting two issues:
test-suite.log
The text was updated successfully, but these errors were encountered:
Regarding the test-suite.log not available as build artifact. Is because you don't upload any artifact.
https://github.com/actions/upload-artifact
You could combine this upload-artifact action with if: always() to ensure this step is always executed, even if the previous step failed.
upload-artifact
if: always()
Pseudo code:
- uses: actions/upload-artifact@v4 if: always() with: name: log-file path: *.log
Sorry, something went wrong.
There is now merge request #237
Closing this in favor of #237
No branches or pull requests
Upon visiting https://github.com/radvd-project/radvd/actions
and clicking on failed Linux build job there is:
That
./test-suite.log
is not available as build artifact.So this issue reporting two issues:
test-suite.log
not available.The text was updated successfully, but these errors were encountered: