Skip to content

Commit

Permalink
add -Werror and analyzer build to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
uecker committed Sep 29, 2024
1 parent 2ff6bef commit f35a94d
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,24 @@ stages:
Build:
stage: build
script:
- make all
- CFLAGS="-Werror" make all
artifacts:
paths:
- view
- cfl2png

Build_Analyzer:
stage: build
script:
- CFLAGS="-fanalyzer -Werror" DEBUG=0 make all
artifacts:
paths:
- view
- cfl2png
expire_in: 45 minutes
allow_failure: true


Test_cfl2png:
stage: test
script:
Expand Down

0 comments on commit f35a94d

Please sign in to comment.