We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4adc25 commit d4c429bCopy full SHA for d4c429b
.github/workflows/doc-build-pdf.yml
@@ -68,7 +68,11 @@ jobs:
68
run: |
69
sudo DEBIAN_FRONTEND=noninteractive sudo apt-get update
70
sudo DEBIAN_FRONTEND=noninteractive apt-get install $(build/bin/sage-get-system-packages debian texlive texlive_luatex free_fonts xindy)
71
- meson compile -C builddir doc-pdf
+ meson compile -C builddir -j1 doc-pdf
72
+ # We use -j1 to workaround some unknown race condition, likely read/write on file luaotf-lookup-cache.luc.
73
+ # See https://github.com/sagemath/sage/pull/40597 for discussion.
74
+ # This is still a bug because someone running `meson compile` or `ninja` on their own machine
75
+ # will still see the issue.
76
env:
77
SAGE_DOCBUILD_OPTS: "--include-tests-blocks"
78
0 commit comments