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
cat
.github/workflows/scanbuild.yml has:
.github/workflows/scanbuild.yml
- name: Test logs if: ${{ failure() }} run: | cat test-suite.log cat tests/*.log
better would be:
- name: Failed Test logs if: ${{ failure() }} run: | find build -name \*.trs | xargs grep -lw FAIL | sed -e 's/trs$/log/' | xargs cat
and every workflow should have this.
The text was updated successfully, but these errors were encountered:
Maybe same issue #2589? Automake has VERBOSE variable so we could simply enable that; make check VERBOSE=1.
VERBOSE
make check VERBOSE=1
Sorry, something went wrong.
Good point, it's a dup yes.
No branches or pull requests
.github/workflows/scanbuild.yml
has:better would be:
and every workflow should have this.
The text was updated successfully, but these errors were encountered: