Skip to content

Commit eac6a4a

Browse files
committed
Try to save cycles. Don't build xapian docs.
1 parent ce71096 commit eac6a4a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ branches:
1818

1919
dist: focal
2020

21-
# - pypy3
2221
python:
2322
- 2.7
2423
- 3.10.4
@@ -27,13 +26,14 @@ python:
2726
- 3.6
2827
- 3.11-dev
2928
- nightly
29+
# - pypy3
3030

3131
services:
3232
- mysql
3333
- postgresql
3434

3535
jobs:
36-
allow_failures: # nightly not ready for prime time yet.
36+
allow_failures: # releases not ready for prime time yet.
3737
- python: nightly
3838
- python: 3.11-dev
3939
- python: pypy3
@@ -65,10 +65,10 @@ before_install:
6565
- tar -Jxvf xapian-bindings-$XAPIAN_VER.tar.xz
6666
- cd xapian-bindings-$XAPIAN_VER/
6767
- echo $TRAVIS_PYTHON_VERSION
68-
- if [[ $TRAVIS_PYTHON_VERSION == "2."* ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python; fi
69-
- if [[ $TRAVIS_PYTHON_VERSION == "3."* ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi
70-
- if [[ $TRAVIS_PYTHON_VERSION == "nightly" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi
71-
- if [[ $TRAVIS_PYTHON_VERSION == "pypy3" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi
68+
- if [[ $TRAVIS_PYTHON_VERSION == "2."* ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python --disable-documentation; fi
69+
- if [[ $TRAVIS_PYTHON_VERSION == "3."* ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3 --disable-documentation; fi
70+
- if [[ $TRAVIS_PYTHON_VERSION == "nightly" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3 --disable-documentation; fi
71+
- if [[ $TRAVIS_PYTHON_VERSION == "pypy3" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3 --disable-documentation; fi
7272
- case "$TRAVIS_PYTHON_VERSION" in nightly|3.11-dev) echo skipping xapian build;; *) make && make install; esac
7373

7474
- PATH=$VIRTUAL_ENV/bin:$PATH

0 commit comments

Comments
 (0)