This repository was archived by the owner on Dec 2, 2025. It is now read-only.
Remove assumption that geometry uses real scalars (#110) #551
This file contains hidden or 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
| name: 📖 | |
| on: | |
| push: | |
| pull_request: | |
| branches: [main] | |
| merge_group: | |
| jobs: | |
| build-docs: | |
| name: Build docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install LAPACK, OpenBLAS | |
| run: sudo apt-get install -y libopenblas-dev liblapack-dev | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.14" | |
| - name: Set up Rust | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: "nightly" | |
| - name: Set up MPI | |
| uses: mpi4py/setup-mpi@v1 | |
| with: | |
| mpi: "mpich" | |
| - uses: actions/checkout@v4 | |
| - name: Build Rust docs | |
| run: RUSTDOCFLAGS="--html-in-header katex-header.html" cargo +nightly doc --no-deps -Zunstable-options -Zrustdoc-scrape-examples --all-features | |
| - name: Make index page | |
| run: echo "<html><head><meta http-equiv='refresh' content='0; URL=ndelement'></head></html>" > target/doc/index.html | |
| - name: Set file permissions | |
| run: | | |
| rm target/doc/.lock | |
| chmod -c -R +rX target/doc | |
| - name: Install uv | |
| run: pip install uv | |
| - name: Make virtual environment | |
| run: | | |
| uv venv .venv | |
| uv pip install pip | |
| - name: Build Python docs | |
| run: | | |
| source .venv/bin/activate | |
| cd python/docs | |
| uv pip install -r requirements.txt | |
| make html | |
| - name: Move docs | |
| run: | | |
| mkdir doc | |
| mv target/doc doc/rust | |
| mv python/docs/_build/html doc/python | |
| - name: Make index page | |
| run: echo "<html><head><title>ndelement docs</title></head><body><center><a href='rust/ndelement'>Rust docs</a><br /><a href='python'>Python docs</a></center></body></html>" > doc/index.html | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v3 | |
| if: github.ref == 'refs/heads/main' | |
| - name: Upload artifact for docs | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: 'doc' | |
| if: github.ref == 'refs/heads/main' | |
| deploy-docs: | |
| name: Deploy docs to GitHub pages | |
| runs-on: ubuntu-latest | |
| needs: | |
| - build-docs | |
| if: github.ref == 'refs/heads/main' | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| permissions: | |
| pages: write | |
| id-token: write | |
| steps: | |
| - name: Deploy docs to GitHub Pages | |
| uses: actions/deploy-pages@v4 |