Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
build.postmarketos.org
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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
postmarketOS
build.postmarketos.org
Merge requests
!105
docs: creation of basic structure
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Imported
docs: creation of basic structure
docs
into
master
Overview
23
Commits
5
Pipelines
29
Changes
33
Merged
Imported
Administrator
requested to merge
docs
into
master
10 months ago
Overview
10
Commits
5
Pipelines
29
Changes
33
Expand
initial adding of config (based on pmb/docs)
0
0
Merge request reports
Compare
master
version 16
a5a8f380
5 months ago
version 15
f9aec85e
5 months ago
version 14
84e144c4
5 months ago
version 13
210528e5
5 months ago
version 12
3de53491
5 months ago
version 11
d44cc09b
5 months ago
version 10
e52c5254
5 months ago
version 9
80edfeee
5 months ago
version 8
7bc8db03
5 months ago
version 7
d0edd56c
5 months ago
version 6
f38507d5
5 months ago
version 5
f6c087c6
5 months ago
version 4
915f4fe1
5 months ago
version 3
c8008de0
5 months ago
version 2
e7909777
5 months ago
version 1
e7909777
5 months ago
master (base)
and
latest version
latest version
b539c5f0
5 commits,
4 months ago
version 16
a5a8f380
5 commits,
5 months ago
version 15
f9aec85e
6 commits,
5 months ago
version 14
84e144c4
6 commits,
5 months ago
version 13
210528e5
7 commits,
5 months ago
version 12
3de53491
7 commits,
5 months ago
version 11
d44cc09b
6 commits,
5 months ago
version 10
e52c5254
5 commits,
5 months ago
version 9
80edfeee
15 commits,
5 months ago
version 8
7bc8db03
14 commits,
5 months ago
version 7
d0edd56c
12 commits,
5 months ago
version 6
f38507d5
11 commits,
5 months ago
version 5
f6c087c6
10 commits,
5 months ago
version 4
915f4fe1
9 commits,
5 months ago
version 3
c8008de0
8 commits,
5 months ago
version 2
e7909777
7 commits,
5 months ago
version 1
e7909777
7 commits,
5 months ago
33 files
+
785
−
129
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
33
Search (e.g. *.vue) (Ctrl+P)
.ci/docs.sh
0 → 100755
+
38
−
0
Options
#!/bin/sh -e
# Description: create documentation with sphinx
# Artifacts: public/
# https://postmarketos.org/pmb-ci
# Install sphinx + extensions when running in CI
if
[
"
$(
id
-u
)
"
=
0
]
;
then
set
-x
apk
-q
add
\
py3-flask
\
py3-myst-parser
\
py3-sphinx_rtd_theme
\
py3-sphinxcontrib-autoprogram
\
py3-sqlalchemy
exec
su
"
${
TESTUSER
:-
build
}
"
-c
"sh -e
$0
"
fi
# Validate that all modules are documented.
fail
=
0
modules
=
"
$(
find bpo/
-name
"*.py"
|
grep
-v
'/__init__.py'
|
sort
|
sed
's|\.py$||'
|
sed
's|/|.|g'
)
"
for
module
in
$modules
;
do
if
!
grep
-q
"automodule::
$module
"
docs/api/
*
.rst
;
then
echo
"Undocumented module:
$module
"
fail
=
1
fi
done
if
[
"
$fail
"
-eq
1
]
;
then
echo
"ERROR: Found undocumented modules!"
echo
"ERROR: Please add this module to the correct .rst file in docs/"
exit
1
fi
sphinx-build
\
docs
\
public
\
# -E -a -v -T
Loading