@@ -125,6 +125,9 @@ def addOpenfpgaBuildStep(suffix, cmake_args=[], build_prefix=[]):
125
125
descriptionDone = 'build' ,
126
126
descriptionSuffix = ['openfpga' , suffix ]))
127
127
128
+ if suffix == 'analyzer' :
129
+ return
130
+
128
131
openfpgaBuildFactory .addStep (ShellCommand (
129
132
name = 'test_openfpga_' + suffix ,
130
133
command = ['ctest' , '--output-on-failure' ],
@@ -134,14 +137,16 @@ def addOpenfpgaBuildStep(suffix, cmake_args=[], build_prefix=[]):
134
137
descriptionDone = 'test' ,
135
138
descriptionSuffix = ['openfpga' , suffix ]))
136
139
137
- addOpenfpgaBuildStep ('normal' ,
138
- build_prefix = ['scan-build-3.8' , '--status-bugs' , '--keep-empty' ])
140
+ addOpenfpgaBuildStep ('normal' )
139
141
addOpenfpgaBuildStep ('ubsan' ,
140
142
cmake_args = ['-DBUILD_DOC=FALSE' , '-DCMAKE_CXX_COMPILER=/usr/bin/clang++-3.8' ,
141
143
'-DSANITIZE=undefined' ])
142
144
addOpenfpgaBuildStep ('asan' ,
143
145
cmake_args = ['-DBUILD_DOC=FALSE' , '-DCMAKE_CXX_COMPILER=/usr/bin/clang++-3.8' ,
144
146
'-DSANITIZE=address' ])
147
+ addOpenfpgaBuildStep ('analyzer' ,
148
+ cmake_args = ['-DBUILD_DOC=FALSE' ],
149
+ build_prefix = ['scan-build-3.8' , '--status-bugs' , '--keep-empty' ])
145
150
146
151
c ['builders' ].append (
147
152
BuilderConfig (
0 commit comments