Skip to content

test building PDF docs #1

test building PDF docs

test building PDF docs #1

Workflow file for this run

name: Docs - PDFs
on:
push:
branches:
- main
- develop
- ci/pdf-docs
pull_request:
merge_group:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
jobs:
docs_user_guide_pdf:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
package: [arkode, cvode, cvodes, ida, idas, kinsol]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
- name: Build docs
run: cd doc/${{matrix.package}}/guide && make latexpdf
- name: Archive files from failed build
uses: actions/upload-artifact@v4
if: failure()
with:
name: latex_build_files
path: |
${{ github.workspace }}/doc/${{matrix.package}}/guide/build/latex