-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switch documentation site to sphinx-based solution #3078
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
b853dab
move docs into sphinx/source folder
alecgrieser 606ce76
fix sphinx build warnings
alecgrieser 854ae88
add configuration for sphinx
alecgrieser 945d56d
add documentation for the SQL API
foundationdb-ci 899915e
add sphinx documentation generation to gradle
alecgrieser cc759c3
Mix the API javadoc into the final documentation site
alecgrieser 56dee37
final tweaks
alecgrieser 2e37b10
remove old static github pages files
alecgrieser 2fac8fb
add documentation publishing workflow
alecgrieser 08e250a
fixup build.gradle
alecgrieser 6d81440
add docs to github workflows
alecgrieser c7f32ee
update paths to ReleaseNotes.md
alecgrieser 2354bec
fix command error
alecgrieser e6c9732
add continue on error
alecgrieser 19d6269
have release (including docs) continue on error if only push fails
alecgrieser 1786535
make release more resilient to push failures and cache Python venv du…
alecgrieser c57a574
fix merge skew to main
alecgrieser 6a06622
Merge branch 'main' into sphinx-doc
alecgrieser 84e18aa
Merge remote-tracking branch 'upstream/main' into sphinx-doc
alecgrieser 5143c11
add some comments about subtle github action logic
alecgrieser File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,14 +10,14 @@ jobs: | |
checks: write | ||
contents: write | ||
packages: write | ||
pages: write | ||
pull-requests: write | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/[email protected] | ||
with: | ||
ssh-key: ${{ secrets.DEPLOY_KEY }} | ||
- name: Setup Base Environment | ||
id: setup-base | ||
uses: ./actions/setup-base-env | ||
- name: Setup FDB | ||
uses: ./actions/setup-fdb | ||
|
@@ -44,4 +44,31 @@ jobs: | |
MAVEN_USER: ${{ secrets.MAVEN_USER }} | ||
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} | ||
|
||
# TODO: Publish documentation updates | ||
# Build documentation. | ||
- name: Cache Python Environment | ||
uses: actions/cache@v4 | ||
with: | ||
path: docs/sphinx/.venv | ||
key: ${{ runner.os }}-sphinx-python-${{ steps.setup-base.outputs.python-version }}-${{ hashFiles('docs/sphinx/requirements.txt') }} | ||
- name: Build Documentation Site | ||
uses: ./actions/run-gradle | ||
with: | ||
gradle_command: documentationSite -PreleaseBuild=true | ||
- name: Upload Documentation | ||
id: doc_upload | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: docs/sphinx/.out/html/ | ||
|
||
deploy_docs: | ||
runs-on: ubuntu-latest | ||
needs: gradle | ||
permissions: | ||
pages: write | ||
id-token: write | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.doc_upload.outputs.page_url }} | ||
steps: | ||
- name: Deploy Documentation | ||
uses: actions/deploy-pages@v4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/bin/python | ||
# | ||
# generate_railroad_svg.py | ||
# | ||
# This source file is part of the FoundationDB open source project | ||
# | ||
# Copyright 2015-2025 Apple Inc. and the FoundationDB project authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
from os import walk, path | ||
from railroad import Diagram, Choice, Terminal, NonTerminal, OneOrMore, Sequence, Optional, Stack | ||
import railroad | ||
|
||
# Vertical space | ||
railroad.VS = 15 | ||
|
||
# Arc radius | ||
railroad.AR = 12 | ||
|
||
# Find all diagram files and generate svgs | ||
base_dir = path.dirname(path.abspath(__file__)) | ||
for root, dirs, files in walk('.'): | ||
for file in files: | ||
if file.endswith('.diagram'): | ||
with open(path.join(root, file), 'r') as diagram_file: | ||
diagram = eval(diagram_file.read()) | ||
with open(path.join(root, file + ".svg"), 'w') as svg_file: | ||
diagram.writeStandalone(svg_file.write) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
alabaster==1.0.0 | ||
babel==2.16.0 | ||
beautifulsoup4==4.12.3 | ||
certifi==2024.7.4 | ||
charset-normalizer==3.3.2 | ||
docutils==0.21.2 | ||
furo==2024.8.6 | ||
idna==3.7 | ||
imagesize==1.4.1 | ||
Jinja2==3.1.4 | ||
MarkupSafe==2.1.5 | ||
myst-parser==4.0.0 | ||
packaging==24.1 | ||
Pygments==2.18.0 | ||
railroad-diagrams==3.0.1 | ||
requests==2.32.3 | ||
snowballstemmer==2.2.0 | ||
soupsieve==2.5 | ||
sphinx==8.1.3 | ||
sphinx-basic-ng==1.0.0b2 | ||
sphinxcontrib-devhelp==2.0.0 | ||
sphinxcontrib-htmlhelp==2.1.0 | ||
sphinxcontrib-jsmath==1.0.1 | ||
sphinxcontrib-qthelp==2.0.0 | ||
sphinxcontrib-serializinghtml==2.0.0 | ||
tomli==2.0.1 | ||
urllib3==2.2.2 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# SQL Reference | ||
|
||
The FDB relational subproject provides a SQL API for interacting with Record Layer databases. This SQL API is currently under active development and is expected | ||
to change frequently. This reference is currently also a work in progress to be updated as the SQL engine develops. | ||
|
||
|
||
```{toctree} | ||
:caption: SQL | ||
:maxdepth: 2 | ||
|
||
reference/sql_types | ||
reference/sql_commands | ||
reference/Functions | ||
``` | ||
|
||
```{toctree} | ||
:caption: Data Model | ||
:maxdepth: 2 | ||
|
||
reference/Databases_Schemas_SchemaTemplates | ||
reference/Tables | ||
reference/Indexes | ||
``` | ||
|
||
```{toctree} | ||
:caption: Miscellaneous | ||
:maxdepth: 2 | ||
|
||
reference/Direct_Access_Api | ||
reference/understanding_bitmap | ||
``` |
File renamed without changes.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this a
if success()
instead ofif failure()
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's because of the
continue-on-error
change to thegit push
step above. With that set, then even if the actual push fails, the whole job is marked as successful. We want that behavior, because that way, we continue on to push the documentation in the main action. But we only want to do that if the rest of the build has succeeded or if we've either pushed successfully or created a PR successfully.So the behavior we want on this line is "if we have been successful so far (i.e., not been cancelled and not had any step fail) but if the
git push
failed, then create a merge PR". FWIW, this is also why we have.outcome
here instead of.conclusion
. The.conclusion
value reflects the success state aftercontinue-on-error
, whereas.outcome
reflects the success state beforecontinue-on-error
. So, if the push was actually successful, we skip PR creation; if the push failed (but everything else succeeded), we create the PRThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Given that this was confusing, I've added an additional comment, if you want to take a look