-
-
Notifications
You must be signed in to change notification settings - Fork 654
Migrate pdf-doc build to meson #40597
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
e5e7a3b
Migrate pdf-doc build to meson
tobiasdiez bbbbf63
Install all required texlive packages
tobiasdiez d9cdd68
Install missing free_fonts
tobiasdiez e57175d
Install xindy as well
tobiasdiez 62a9bfd
Fix location of produced pdfs
tobiasdiez 41d2591
Merge branch 'develop' into meson-pdf-docs
tobiasdiez fb0e627
Properly handle `MAKE='make -j5'`
tobiasdiez 4487fc2
Improve "docs-pdf" metadata
tobiasdiez File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,148 +2,93 @@ name: Build documentation (PDF) | |
|
||
on: | ||
pull_request: | ||
merge_group: | ||
push: | ||
tags: | ||
# Match all release tags including beta, rc | ||
- '[0-9]+.[0-9]+' | ||
- '[0-9]+.[0-9]+.[0-9]+' | ||
- '[0-9]+.[0-9]+.beta[0-9]+' | ||
- '[0-9]+.[0-9]+.[0-9]+.beta[0-9]+' | ||
- '[0-9]+.[0-9]+.rc[0-9]+' | ||
- '[0-9]+.[0-9]+.[0-9]+.rc[0-9]+' | ||
branches: | ||
- develop | ||
workflow_dispatch: | ||
# Allow to run manually | ||
inputs: | ||
platform: | ||
description: 'Platform' | ||
required: true | ||
default: 'ubuntu-noble-standard' | ||
docker_tag: | ||
description: 'Docker tag' | ||
required: true | ||
default: 'dev' | ||
|
||
concurrency: | ||
# Cancel previous runs of this workflow for the same branch | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
# Same as in build.yml | ||
TOX_ENV: "docker-${{ github.event.inputs.platform || 'ubuntu-noble-standard' }}-incremental" | ||
BUILD_IMAGE: "localhost:5000/${{ github.repository }}/sage-${{ github.event.inputs.platform || 'ubuntu-noble-standard' }}-with-targets:ci" | ||
FROM_DOCKER_REPOSITORY: "ghcr.io/sagemath/sage/" | ||
FROM_DOCKER_TARGET: "with-targets" | ||
FROM_DOCKER_TAG: ${{ github.event.inputs.docker_tag || 'dev'}} | ||
EXTRA_CONFIGURE_ARGS: --enable-fat-binary | ||
PYTHON_VERSION: 3.11 | ||
|
||
jobs: | ||
build-doc-pdf: | ||
doc-pdf: | ||
runs-on: ubuntu-latest | ||
services: | ||
# https://docs.docker.com/build/ci/github-actions/local-registry/ | ||
registry: | ||
image: registry:2 | ||
ports: | ||
- 5000:5000 | ||
steps: | ||
- name: Maximize build disk space | ||
uses: easimon/maximize-build-space@v10 | ||
with: | ||
# need space in /var for Docker images | ||
root-reserve-mb: 30000 | ||
remove-dotnet: true | ||
remove-android: true | ||
remove-haskell: true | ||
remove-codeql: true | ||
remove-docker-images: true | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install test prerequisites | ||
# From docker.yml | ||
run: | | ||
sudo DEBIAN_FRONTEND=noninteractive apt-get update | ||
sudo DEBIAN_FRONTEND=noninteractive apt-get install tox | ||
sudo apt-get clean | ||
df -h | ||
|
||
- name: Merge CI fixes from sagemath/sage | ||
run: | | ||
mkdir -p upstream | ||
.github/workflows/merge-fixes.sh 2>&1 | tee upstream/ci_fixes.log | ||
.github/workflows/merge-fixes.sh | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
SAGE_CI_FIXES_FROM_REPOSITORIES: ${{ vars.SAGE_CI_FIXES_FROM_REPOSITORIES }} | ||
|
||
# Building | ||
|
||
- name: Generate Dockerfile | ||
# From docker.yml | ||
run: | | ||
tox -e ${{ env.TOX_ENV }} | ||
cp .tox/${{ env.TOX_ENV }}/Dockerfile . | ||
env: | ||
# Only generate the Dockerfile, do not run 'docker build' here | ||
DOCKER_TARGETS: "" | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Cache conda packages | ||
uses: actions/cache@v4 | ||
with: | ||
driver-opts: network=host | ||
|
||
- name: Build Docker image | ||
id: image | ||
uses: docker/build-push-action@v6 | ||
path: ~/conda_pkgs_dir | ||
key: | ||
${{ runner.os }}-conda-${{ hashFiles('environment-${{ env.PYTHON_VERSION }}-linux.yml') }} | ||
|
||
- name: Compiler cache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
# push and load may not be set together at the moment | ||
push: true | ||
load: false | ||
context: . | ||
tags: ${{ env.BUILD_IMAGE }} | ||
target: with-targets | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
build-args: | | ||
NUMPROC=6 | ||
USE_MAKEFLAGS=-k V=0 SAGE_NUM_THREADS=4 --output-sync=recurse | ||
TARGETS_PRE=build/make/Makefile | ||
TARGETS=ci-build-with-fallback | ||
|
||
- name: Start container | ||
id: container | ||
# Try to continue when "exporting to GitHub Actions Cache" failed with timeout | ||
if: (success() || failure()) | ||
run: | | ||
docker run --name BUILD -dit \ | ||
--mount type=bind,src=$(pwd),dst=$(pwd) \ | ||
--workdir $(pwd) \ | ||
${{ env.BUILD_IMAGE }} /bin/sh | ||
key: ${{ runner.os }}-meson-${{ env.PYTHON_VERSION }} | ||
|
||
# | ||
# On PRs and pushes to branches | ||
# | ||
|
||
- name: Update system packages | ||
id: packages | ||
if: (success() || failure()) && steps.container.outcome == 'success' | ||
- name: Setup Conda environment | ||
uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
# Disabled for now due to | ||
# https://github.com/conda-incubator/setup-miniconda/issues/379 | ||
# miniforge-version: latest | ||
use-mamba: true | ||
channels: conda-forge | ||
channel-priority: true | ||
activate-environment: sage-dev | ||
environment-file: environment-${{ env.PYTHON_VERSION }}-linux.yml | ||
|
||
- name: Build Sage | ||
shell: bash -l {0} | ||
run: | | ||
export PATH="build/bin:$PATH" | ||
eval $(sage-print-system-package-command auto update) | ||
eval $(sage-print-system-package-command auto --yes --no-install-recommends install zip) | ||
eval $(sage-print-system-package-command auto --spkg --yes --no-install-recommends install git texlive texlive_luatex free_fonts xindy) | ||
shell: sh .github/workflows/docker-exec-script.sh BUILD /sage {0} | ||
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" | ||
export CC="ccache $CC" | ||
export CXX="ccache $CXX" | ||
pip install --no-build-isolation --config-settings=builddir=builddir . -v | ||
|
||
- name: Build doc (PDF) | ||
id: docbuild | ||
if: (success() || failure()) && steps.packages.outcome == 'success' | ||
- name: Build documentation | ||
shell: bash -l {0} | ||
run: | | ||
export MAKE="make -j5 --output-sync=recurse" SAGE_NUM_THREADS=5 | ||
make doc-clean doc-uninstall; make sagemath_doc_html-build-deps sagemath_doc_pdf-no-deps | ||
shell: sh .github/workflows/docker-exec-script.sh BUILD /sage {0} | ||
sudo DEBIAN_FRONTEND=noninteractive sudo apt-get update | ||
sudo DEBIAN_FRONTEND=noninteractive apt-get install $(build/bin/sage-get-system-packages debian texlive texlive_luatex free_fonts xindy) | ||
meson compile -C builddir doc-pdf | ||
env: | ||
SAGE_DOCBUILD_OPTS: "--include-tests-blocks" | ||
|
||
- name: Copy doc | ||
id: copy | ||
if: (success() || failure()) && steps.docbuild.outcome == 'success' | ||
run: | | ||
mkdir -p ./doc | ||
# We copy everything to a local folder | ||
docker cp BUILD:/sage/local/share/doc/sage/pdf doc | ||
cp -r builddir/src/doc/pdf doc/ | ||
# Zip everything for increased performance | ||
zip -r doc-pdf.zip doc | ||
|
||
- name: Upload doc | ||
if: (success() || failure()) && steps.copy.outcome == 'success' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: doc-pdf | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ env: | |
PYTHON_VERSION: 3.11 | ||
|
||
jobs: | ||
build-doc: | ||
doc-html: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
|
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can the user set
MAKE='make -j5'
? if so the command below would fail.(it's encouraged that they set
MAKEFLAGS=-j5
instead, but still…)