Add the initial doxygen Dockerfile
This commit is contained in:
parent
98d9911c7d
commit
a883704379
|
@ -43,3 +43,4 @@ include:
|
||||||
#- local: '/.gitlab/Windows-CI.yml'
|
#- local: '/.gitlab/Windows-CI.yml'
|
||||||
- local: '/.gitlab/coverity.yml'
|
- local: '/.gitlab/coverity.yml'
|
||||||
- local: '/.gitlab/linux-metadata-validate.yml'
|
- local: '/.gitlab/linux-metadata-validate.yml'
|
||||||
|
- local: '/.gitlab/doxygen.yml'
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
build_doxygen_docker:
|
||||||
|
image: docker:stable
|
||||||
|
services:
|
||||||
|
- docker:dind
|
||||||
|
stage: build
|
||||||
|
before_script:
|
||||||
|
- 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"
|
||||||
|
only:
|
||||||
|
refs:
|
||||||
|
- schedules
|
||||||
|
variables:
|
||||||
|
- $SCHEDULED_JOB_NAME == "doxygen"
|
|
@ -0,0 +1,22 @@
|
||||||
|
FROM registry.gitlab.com/kicad/kicad-ci/source_containers/master/fedora:34 as build-doxygen-env
|
||||||
|
USER root
|
||||||
|
|
||||||
|
WORKDIR /src
|
||||||
|
COPY . ./
|
||||||
|
|
||||||
|
RUN ls
|
||||||
|
RUN mkdir build && cd build
|
||||||
|
|
||||||
|
WORKDIR /src/build
|
||||||
|
|
||||||
|
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
|
|
@ -0,0 +1,6 @@
|
||||||
|
.git
|
||||||
|
.gitlab
|
||||||
|
.github
|
||||||
|
.idea
|
||||||
|
.vs
|
||||||
|
build
|
Loading…
Reference in New Issue