Skip to content

Commit 3d7d1eb

Browse files
committed
test: see if xapian will build with 3.13beta1
isue2551338 xapian doesn't build in CI for 3.13 python Also add an if: clause (looking for 3.14 so 3.13 will build). If xapian fails to build the if: clause will allow me to skip download/unpack and configure for this step saving runtime.
1 parent b8d7ed4 commit 3d7d1eb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ jobs:
224224
pip install Markdown; fi
225225
226226
- name: Install xapian
227+
if: matrix.python-version != '3.14'
227228
run: |
228229
set -xv
229230
sudo apt-get install libxapian-dev
@@ -254,7 +255,7 @@ jobs:
254255
diff -u configure.FCS configure || true; \
255256
./configure --prefix=$VIRTUAL_ENV --with-python3 --disable-documentation; \
256257
fi
257-
case "$PYTHON_VERSION" in "3.13") echo skipping xapian build;; *) make && sudo make install; esac
258+
case "$PYTHON_VERSION" in "3.14") echo skipping xapian build;; *) make && sudo make install; esac
258259
259260
- name: Test build roundup and install locale so lang tests work.
260261
run: |

0 commit comments

Comments
 (0)