Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NPDet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIC
NPDet
Merge requests
!169
RTD docs pages
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
RTD docs pages
rtd_docs
into
master
Overview
0
Commits
6
Pipelines
0
Changes
2
Merged
Whitney Armstrong
requested to merge
rtd_docs
into
master
4 years ago
Overview
0
Commits
6
Pipelines
0
Changes
2
Expand
RTD pages should now build
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
a265d404
6 commits,
4 years ago
2 files
+
20
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
17
−
2
Options
@@ -60,16 +60,31 @@ gen_doxygen_src:
-
build/src/dd4pod/src
-
build/src/dd4pod/dd4pod
rtd_sphinx_build
:
stage
:
container
#image
:
eicweb.phy.anl.gov:4567/containers/eic_container/rtd_builder
image
:
eicweb.phy.anl.gov:4567/containers/image_recipes/ubuntu_dind:latest
rules
:
-
if
:
'
$CI_SERVER_HOST
!=
"eicweb.phy.anl.gov"
&&
$CI_COMMIT_BRANCH
==
"master"'
script
:
-
apt-get update && apt-get install -y python3-sphinx python3-pip
-
pip3 install sphinx && pip3 install sphinx_rtd_theme
-
cd docs && pip3 install -r requirements.txt && make html
artifacts
:
paths
:
-
docs/_build/html
pages
:
image
:
eicweb.phy.anl.gov:4567/containers/eic_container/alpine
stage
:
deploy
extends
:
.not-eicweb
needs
:
[
'
gen_doxygen_src'
]
needs
:
[
'
gen_doxygen_src'
,
'
rtd_sphinx_build'
]
rules
:
-
if
:
'
$CI_SERVER_HOST
!=
"eicweb.phy.anl.gov"
&&
$CI_COMMIT_BRANCH
==
"master"'
script
:
-
apk update && apk add doxygen graphviz ttf-ubuntu-font-family
-
cd doc && doxygen Doxyfile && mv doxygen_output/html/ ../public/
-
mkdir -p public && cp -r docs/_build/html/* public/.
-
cd doc && doxygen Doxyfile && mv doxygen_output/html ../public/ref_doc && cd ..
artifacts
:
paths
:
-
public
Loading