Skip to content

JDBetteridge/merge pyop2 tsfc #6027

JDBetteridge/merge pyop2 tsfc

JDBetteridge/merge pyop2 tsfc #6027

Workflow file for this run

name: Check docs build cleanly
on:
# Run on pushes to master
push:
branches:
- master
# And all pull requests
pull_request:
concurrency:
# Cancels jobs running if new commits are pushed
group: >
${{ github.workflow }}-
${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build_docs:
name: Run doc build
# Run on the Github hosted runner
runs-on: ubuntu-latest
container:
image: firedrakeproject/firedrake-docdeps:latest
# Github hosted runners require running as root user:
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#docker-container-filesystem
options: --user root
volumes:
- ${{ github.workspace }}:/home/firedrake/output
# Steps represent a sequence of tasks that will be executed as
# part of the jobs
steps:
- uses: actions/checkout@v4
- name: Install checkedout Firedrake
run: |
. /home/firedrake/firedrake/bin/activate
python -m pip install -e .
- name: Check bibtex
run: |
. /home/firedrake/firedrake/bin/activate
cd docs
make validate-bibtex
- name: Check documentation links
if: ${{ github.ref == 'refs/heads/master' }}
run: |
. /home/firedrake/firedrake/bin/activate
cd docs
make linkcheck
- name: Build docs
run: |
. /home/firedrake/firedrake/bin/activate
cd docs
make html
make latex
make latexpdf
- name: Copy manual to HTML tree
run: |
cd docs
cp build/latex/Firedrake.pdf build/html/_static/manual.pdf
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
name: github-pages
path: /__w/firedrake/firedrake/docs/build/html
retention-days: 1
deploy:
name: Deploy Github pages
needs: build_docs
if: ${{ github.ref == 'refs/heads/master' }}
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: http://firedrakeproject.github.io/firedrake
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4