-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix] Moving from Jekyll to Sphinx. RTD theme is safe!
- Loading branch information
1 parent
8c11b57
commit 18bf5c1
Showing
19 changed files
with
235 additions
and
60 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Documentation generation & update | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
branches: | ||
- develop | ||
- master | ||
pull_request: | ||
branches: | ||
- develop | ||
- master | ||
|
||
jobs: | ||
generate: | ||
name: Generate the documentation | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Clone | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install Python dependencies | ||
run: | | ||
pip install -r docs/requirements.txt | ||
- name: Generate the documentation | ||
run: (cd docs && make html) | ||
- name: Upload documentation bundle | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: documentation | ||
path: docs/build/html/ | ||
|
||
deploy: | ||
name: Deploy the documentation on Github pages | ||
runs-on: ubuntu-latest | ||
needs: generate | ||
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) | ||
steps: | ||
- name: Download documentation bundle | ||
uses: actions/download-artifact@v4 | ||
- name: Deploy documentation on pages | ||
uses: peaceiris/actions-gh-pages@v4 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: documentation/ |
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,54 @@ | ||
name: Documentation generation & update | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
branches: | ||
- develop | ||
- master | ||
pull_request: | ||
branches: | ||
- develop | ||
- master | ||
|
||
jobs: | ||
generate: | ||
name: Generate the documentation | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Clone | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install APT dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install graphviz | ||
- name: Install Python dependencies | ||
run: | | ||
pip install -U pip | ||
pip install .[doc] | ||
- name: Generating automatic resources | ||
run: (cd doc && make gen_resources) | ||
- name: Generate the documentation | ||
run: (cd doc && make html) | ||
- name: Upload documentation bundle | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: documentation | ||
path: doc/build/html/ | ||
|
||
deploy: | ||
name: Deploy the documentation on Github pages | ||
runs-on: ubuntu-latest | ||
needs: generate | ||
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) | ||
steps: | ||
- name: Download documentation bundle | ||
uses: actions/download-artifact@v4 | ||
- name: Deploy documentation on pages | ||
uses: peaceiris/actions-gh-pages@v4 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: documentation/ |
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,20 @@ | ||
# Minimal makefile for Sphinx documentation | ||
# | ||
|
||
# You can set these variables from the command line, and also | ||
# from the environment for the first two. | ||
SPHINXOPTS ?= | ||
SPHINXBUILD ?= sphinx-build | ||
SOURCEDIR = . | ||
BUILDDIR = build | ||
|
||
# Put it first so that "make" without argument is like "make help". | ||
help: | ||
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) | ||
|
||
.PHONY: help Makefile | ||
|
||
# Catch-all target: route all unknown targets to Sphinx using the new | ||
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). | ||
%: Makefile | ||
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Configuration file for the Sphinx documentation builder. | ||
# | ||
# For the full list of built-in configuration values, see the documentation: | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html | ||
|
||
# -- Project information ----------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information | ||
|
||
project = 'Speculos' | ||
copyright = '2024, Ledger' | ||
author = 'Ledger' | ||
|
||
# -- General configuration --------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration | ||
|
||
extensions = ['myst_parser'] | ||
|
||
templates_path = ['_templates'] | ||
exclude_patterns = [] | ||
|
||
source_suffix = { | ||
'.rst': 'restructuredtext', | ||
'.txt': 'markdown', | ||
'.md': 'markdown', | ||
} | ||
|
||
|
||
# -- Options for HTML output ------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output | ||
|
||
html_theme = "sphinx_rtd_theme" | ||
html_static_path = ['_static'] |
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,10 @@ | ||
Developer documentation | ||
======================= | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
getting_started | ||
tests | ||
internals | ||
ci |
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,44 @@ | ||
Speculos documentation | ||
====================== | ||
|
||
[Source code](https://github.com/LedgerHQ/speculos). | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
installation/index | ||
user/index | ||
dev/index | ||
|
||
|
||
Users | ||
----- | ||
|
||
Installation and basic usage | ||
++++++++++++++++++++++++++++ | ||
|
||
- Linux: :doc:`Requirements and build<installation/build>` | ||
- Mac OS (and Linux) users: :doc:`How to use the Docker image<user/docker>` with VNC | ||
- Mac M1 users: :doc:`How to build and use the Docker image<user/macm1>` | ||
- Windows users: :doc:`Using speculos from WSL 2<installation/wsl>` | ||
- :doc:`Usage<user/usage>` | ||
|
||
Interaction with an app | ||
+++++++++++++++++++++++ | ||
|
||
- :doc:`How to send APDUs to an app (and more)<user/clients>` | ||
- :doc:`How to use gdb to debug an app<user/debug>` | ||
- :doc:`How to automate actions thanks to the REST API<user/api>` | ||
|
||
For advanced users | ||
++++++++++++++++++ | ||
|
||
- :doc:`Automation: press buttons automatically<user/automation>` | ||
- :doc:`Semihosting as an additional debug mechanism<user/semihosting>` | ||
|
||
Speculos developers | ||
------------------- | ||
|
||
- :doc:`CI (Continuous Integration)<dev/ci>` | ||
- :doc:`Internals<dev/internals>` | ||
- :doc:`How to run tests<dev/tests>` |
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,8 @@ | ||
Installation | ||
============ | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
build | ||
wsl |
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,3 @@ | ||
sphinx | ||
sphinx-rtd-theme | ||
myst-parser |
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 |
---|---|---|
@@ -1,7 +1,3 @@ | ||
--- | ||
sort: 2 | ||
--- | ||
|
||
# Docker | ||
|
||
## How to use the Docker image | ||
|
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,14 @@ | ||
User | ||
==== | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
api | ||
automation | ||
clients | ||
debug | ||
docker | ||
macm1 | ||
semihosting | ||
usage |
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