Adjust the doxygen ci step to exclude python
This commit is contained in:
parent
a883704379
commit
33801c9134
|
@ -7,8 +7,8 @@ build_doxygen_docker:
|
|||
- docker info
|
||||
- docker login -u gitlab-ci-token -p "$CI_BUILD_TOKEN" "$CI_REGISTRY"
|
||||
script:
|
||||
- docker build -t "${CI_REGISTRY_IMAGE}-doxygen:$CI_COMMIT_BRANCH" -f ./doxygen/doxygen.Dockerfile .
|
||||
- docker push "${CI_REGISTRY_IMAGE}-doxygen:$CI_COMMIT_BRANCH"
|
||||
- docker build -t "${CI_REGISTRY_IMAGE}/doxygen:$CI_COMMIT_BRANCH" -f ./doxygen/doxygen.Dockerfile .
|
||||
- docker push "${CI_REGISTRY_IMAGE}/doxygen:$CI_COMMIT_BRANCH"
|
||||
only:
|
||||
refs:
|
||||
- schedules
|
||||
|
|
|
@ -13,10 +13,8 @@ RUN cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|||
-DKICAD_USE_OCC=ON \
|
||||
-DKICAD_SPICE=ON
|
||||
RUN make doxygen-docs
|
||||
RUN make doxygen-python
|
||||
|
||||
|
||||
FROM scratch as output-image
|
||||
|
||||
COPY --from=build-doxygen-env /src/doxygen/out/html /doxygen-docs_html
|
||||
COPY --from=build-doxygen-env /src/build/pcbnew/doxygen-python/html /doxygen-python_html
|
||||
|
|
Loading…
Reference in New Issue