Use PETSc version 3.25.0 (#580) #1845
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: Documentation | |
| on: | |
| push: | |
| branches: [ devel ] | |
| paths: | |
| - 'README.md' | |
| - 'docs/**' | |
| - 'psydac/**.py' | |
| pull_request: | |
| branches: [ devel, main ] | |
| types: | |
| - ready_for_review | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| jobs: | |
| build_docs: | |
| runs-on: ubuntu-latest | |
| env: | |
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN}} | |
| OMP_NUM_THREADS: 2 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| - name: Install non-Python dependencies on Ubuntu | |
| uses: awalsh128/cache-apt-pkgs-action@latest | |
| with: | |
| packages: gfortran openmpi-bin libopenmpi-dev libhdf5-openmpi-dev | |
| version: 1.0 | |
| execute_install_scripts: true | |
| - name: Reconfigure non-Python dependencies on Ubuntu | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install --reinstall openmpi-bin libhdf5-openmpi-dev liblapack-dev libblas-dev | |
| sudo apt install graphviz pandoc | |
| - name: Print information on MPI and HDF5 libraries | |
| run: | | |
| ompi_info | |
| h5pcc -showconfig -echo || true | |
| - name: Upgrade pip, setuptools, and wheel | |
| run: | | |
| pip install --upgrade pip setuptools wheel | |
| - name: Install PETSc and petsc4py with complex support | |
| uses: ./.github/actions/install_petsc4py | |
| - name: Install h5py in parallel mode | |
| uses: ./.github/actions/install_h5py | |
| - name: Install project | |
| run: | | |
| pip install .[test] | |
| pip freeze | |
| - name: Install Python dependencies for Documentation | |
| run: | | |
| pip install -r docs/requirements.txt | |
| - name: Make the sphinx doc | |
| run: | | |
| rm -rf docs/source/modules/STUBDIR | |
| make -C docs clean | |
| make -C docs html | |
| python docs/update_links.py | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v5 | |
| - name: Upload artifact | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: 'docs/build/html' | |
| deploy_docs: | |
| if: github.event_name == 'push' && github.ref == 'refs/heads/devel' | |
| needs: build_docs | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |