This is an automated email from the ASF dual-hosted git repository.
bneradt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/trafficserver-ci.git
The following commit(s) were added to refs/heads/main by this push:
new 4cce6c7 Revert "I think this hard-coding isn't needed anymore (#372)"
(#373)
4cce6c7 is described below
commit 4cce6c7b9cad78883a2abb71c694d2fd76774043
Author: Brian Neradt <[email protected]>
AuthorDate: Thu Mar 27 17:53:01 2025 -0500
Revert "I think this hard-coding isn't needed anymore (#372)" (#373)
This reverts commit fd9dbf0ee7f8ab429d8bc22e6cbac025ee461898.
Reverts #372
Nevermind: it looks like this is needed lest Python3.6 (the rockylinux:8
system default) is used.
---
jenkins/github/docs.pipeline | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/jenkins/github/docs.pipeline b/jenkins/github/docs.pipeline
index e8b2a3c..9eaac99 100644
--- a/jenkins/github/docs.pipeline
+++ b/jenkins/github/docs.pipeline
@@ -72,6 +72,11 @@ pipeline {
sudo chmod -R 777 . || exit 1
+ # Sphinx 8.1 requires a recent version of Python.
+ export PIPENV_VENV_IN_PROJECT=1
+ python3.12 -m pipenv install --python python3.12
+ source .venv/bin/activate
+
if [ -d cmake ]
then
cmake -B docs-build --preset ci-docs