Mercurial > p > roundup > code
diff .github/workflows/build-xapian.yml @ 7963:05ce472d372b
test: 1.4.25 get xapian working under github actions and python 3.13
[skip travis]
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Tue, 14 May 2024 08:28:12 -0400 |
| parents | 9166e0100e01 |
| children | 131c962fb6af |
line wrap: on
line diff
--- a/.github/workflows/build-xapian.yml Mon May 13 18:42:26 2024 -0400 +++ b/.github/workflows/build-xapian.yml Tue May 14 08:28:12 2024 -0400 @@ -81,8 +81,8 @@ sudo apt-get install libxapian-dev # Sphinx required to build the xapian python bindings. Use 1.8.5 on # older python and newest on newer. - if [[ $PYTHON_VERSION == '3.'* ]] ; then pip install sphinx; fi - XAPIAN_VER="1.4.18"; echo $XAPIAN_VER; + pip install sphinx + XAPIAN_VER="1.4.25"; echo $XAPIAN_VER; cd /tmp curl -s -O https://oligarchy.co.uk/xapian/$XAPIAN_VER/xapian-bindings-$XAPIAN_VER.tar.xz tar -Jxvf xapian-bindings-$XAPIAN_VER.tar.xz @@ -92,6 +92,7 @@ # 3.11 or newer. # Change distutils.sysconfig... to just sysconfig and SO # to EXT_SUFFIX to get valid value. + # DISABLED use their script if [[ $PYTHON_VERSION == "X."* ]]; then cp configure configure.FCS; sed -i \
