Turn KICAD_USE_CMAKE_FINDPROTOBUF on for old containers

This commit is contained in:
Jon Evans 2025-01-19 23:58:07 -05:00
parent 867e6858c8
commit dd20d464f3
2 changed files with 4 additions and 2 deletions

View File

@ -65,6 +65,7 @@ Coverity:
-DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_BUILD_TYPE=RelWithDebInfo
-DKICAD_STDLIB_LIGHT_DEBUG=ON -DKICAD_STDLIB_LIGHT_DEBUG=ON
-DKICAD_SCRIPTING_WXPYTHON=ON -DKICAD_SCRIPTING_WXPYTHON=ON
-DKICAD_USE_CMAKE_FINDPROTOBUF=ON
- coverity/bin/cov-build --dir cov-int make -j10 - coverity/bin/cov-build --dir cov-int make -j10
- *coverity_submit - *coverity_submit
artifacts: artifacts:
@ -72,4 +73,4 @@ Coverity:
expose_as: 'Coverity log' expose_as: 'Coverity log'
name: "coverity_log.txt" name: "coverity_log.txt"
paths: paths:
- cov-int/build-log.txt - cov-int/build-log.txt

View File

@ -11,7 +11,8 @@ WORKDIR /src/build
RUN cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo \ RUN cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DKICAD_USE_OCC=ON \ -DKICAD_USE_OCC=ON \
-DKICAD_SCRIPTING_WXPYTHON=ON -DKICAD_SCRIPTING_WXPYTHON=ON \
-DKICAD_USE_CMAKE_FINDPROTOBUF=ON
RUN make doxygen-docs RUN make doxygen-docs
RUN make doxygen-python RUN make doxygen-python