Mercurial > p > roundup > code
changeset 7954:a0ccbcf69989
test: 1.4.19 get xapian working under github actions and python 3.13
issue2551338 xapian doesn't build in CI for 3.13 python
binary search for working version of xapian tarball. try 1.4.19
1.4.20 failed with:
xapian_wrap.cc:65031:116: error: ‘FLAG_NO_POSITIONS’ is not a member
of ‘Xapian::QueryParser’
[skip travis]
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 12 May 2024 19:40:48 -0400 |
| parents | b2733bc45c62 |
| children | 694bbda71bf7 |
| files | .github/workflows/build-xapian.yml |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/.github/workflows/build-xapian.yml Sun May 12 19:38:09 2024 -0400 +++ b/.github/workflows/build-xapian.yml Sun May 12 19:40:48 2024 -0400 @@ -82,7 +82,7 @@ # 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.20"; echo $XAPIAN_VER; + XAPIAN_VER="1.4.19"; 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
