Skip to content

Commit 61f3a32

Browse files
committed
Skip xapian builds for nightly and 3.11-dev.
Can't fix it tonight. Get them working as best as possible and re-enable minimun testing.
1 parent 9d04a02 commit 61f3a32

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ dist: focal
2020

2121
# - pypy3
2222
python:
23-
# - 2.7
24-
# - 3.10.4
23+
- 2.7
24+
- 3.10.4
2525
# - 3.9
2626
# - 3.8
27-
# - 3.6
27+
- 3.6
2828
- 3.11-dev
2929
- nightly
3030

@@ -52,6 +52,7 @@ addons:
5252
- gpgsm
5353

5454
before_install:
55+
# build xapian
5556
- echo "$TRAVIS_PYTHON_VERSION"
5657
# Sphinx required to build the xapian python bindings. Use 1.8.5 on
5758
# older python and newest on newer.
@@ -68,7 +69,7 @@ before_install:
6869
- if [[ $TRAVIS_PYTHON_VERSION == "3."* ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi
6970
- if [[ $TRAVIS_PYTHON_VERSION == "nightly" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi
7071
- if [[ $TRAVIS_PYTHON_VERSION == "pypy3" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi
71-
- make && make install
72+
- case "$TRAVIS_PYTHON_VERSION" in nightly|3.11-dev) echo skipping xapian build;; *) make && make install; esac
7273

7374
- PATH=$VIRTUAL_ENV/bin:$PATH
7475

0 commit comments

Comments
 (0)