-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update links to point to github pages (#34)
* Update links to point to github pages * GH workflow to create FORD documentation * Updated musubi submodule * Merge pull request #33 from apes-suite/gh_ford
- Loading branch information
Showing
4 changed files
with
57 additions
and
3 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,54 @@ | ||
name: Fordoc | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
|
||
permissions: | ||
contents: write | ||
|
||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
documentation: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Install gfortran | ||
run: | | ||
sudo apt install -y gfortran | ||
- name: Install Open MPI | ||
run: | | ||
sudo apt install -y openmpi-bin openmpi-common libopenmpi-dev | ||
- name: Install Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.13' | ||
|
||
- name: Install Graphviz | ||
uses: ts-graphviz/setup-graphviz@v2 | ||
|
||
- name: Install FORD | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install ford | ||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | ||
- name: Build FORD Documentation | ||
run: | | ||
FC=mpif90 bin/waf --fordonline distclean configure docu | ||
- name: Deploy Documentation | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
branch: gh-pages | ||
folder: build/ford/mus/docu |
Submodule aotus
updated
3 files
+47 −0 | .github/workflows/ford.yml | |
+3 −3 | aot_mainpage.md | |
+1 −1 | wscript |
Submodule mus
updated
4 files
+1 −1 | examples/tutorials/tut_00_prerequisites.md | |
+2 −2 | mus_mainpage.md | |
+10 −10 | source/docu/mus_usage.md | |
+1 −1 | wscript |
Submodule tem
updated
3 files
+48 −41 | source/tem_operation_var_module.fpp | |
+2 −2 | tem_mainpage.md | |
+2 −2 | wscript |