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 0bcd818 commit 2f3fac3Copy full SHA for 2f3fac3
cloudbuild.yaml
@@ -34,7 +34,9 @@ steps:
34
apt-get install -y nodejs
35
36
# Generate chapters, run tests (installs Python/Node deps, starts server)
37
- ./tools/scripts/run_and_test_website.sh
+ # PIP_BREAK_SYSTEM_PACKAGES=1 is required on Ubuntu 24.04 (PEP 668) since
38
+ # we're intentionally installing into the system Python in a throwaway container.
39
+ PIP_BREAK_SYSTEM_PACKAGES=1 ./tools/scripts/run_and_test_website.sh
40
41
# Enable Ubuntu universe repository (required for fonts and pdftk)
42
apt-get install -y software-properties-common
0 commit comments