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
1 changed file:
Changes:
... | ... | @@ -252,5 +252,9 @@ linux:static-analyzer: |
252 | 252 | - job: linux:build
|
253 | 253 | artifacts: true
|
254 | 254 | script:
|
255 | + # Analysis can generate huge amounts of output. For now just save
|
|
256 | + # the results to the log file instead of also having it go to the
|
|
257 | + # console. If someday there's less or no output, we can consider
|
|
258 | + # having the logs go to the console too.
|
|
255 | 259 | - make -C linux-4/lisp clean
|
256 | - - make -C linux-4/lisp CFLAGS=-fanalyzer 2>&1 | tee analyzer.log |
|
260 | + - make -C linux-4/lisp CFLAGS=-fanalyzer > analyzer.log 2>&1 |