Raymond Toy pushed to branch issue-342-add-ci-static-analyzer at cmucl / cmucl
Commits: d2437978 by Raymond Toy at 2024-07-24T14:09:40-07:00 Don't log the analyzer output to the console.
As the comment says, there can be huge amounts of output so just save everything in the log file for later viewing. Currently, the log to the console stops in the pipeline viewer anyway, so no need to do that.
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -252,5 +252,9 @@ linux:static-analyzer: - job: linux:build artifacts: true script: + # Analysis can generate huge amounts of output. For now just save + # the results to the log file instead of also having it go to the + # console. If someday there's less or no output, we can consider + # having the logs go to the console too. - make -C linux-4/lisp clean - - make -C linux-4/lisp CFLAGS=-fanalyzer 2>&1 | tee analyzer.log + - make -C linux-4/lisp CFLAGS=-fanalyzer > analyzer.log 2>&1
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/d243797816fd89c6ce7c82ea...