Mercurial > p > roundup > code
diff .travis.yml @ 6720:9db9687d9433
Try to save cycles. Don't build xapian docs.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 23 Jun 2022 00:33:33 -0400 |
| parents | 19c7ebe5e5ac |
| children | c6dc2e8d59a8 |
line wrap: on
line diff
--- a/.travis.yml Wed Jun 22 16:18:46 2022 -0400 +++ b/.travis.yml Thu Jun 23 00:33:33 2022 -0400 @@ -18,7 +18,6 @@ dist: focal -# - pypy3 python: - 2.7 - 3.10.4 @@ -27,13 +26,14 @@ - 3.6 - 3.11-dev - nightly +# - pypy3 services: - mysql - postgresql jobs: - allow_failures: # nightly not ready for prime time yet. + allow_failures: # releases not ready for prime time yet. - python: nightly - python: 3.11-dev - python: pypy3 @@ -65,10 +65,10 @@ - tar -Jxvf xapian-bindings-$XAPIAN_VER.tar.xz - cd xapian-bindings-$XAPIAN_VER/ - echo $TRAVIS_PYTHON_VERSION - - if [[ $TRAVIS_PYTHON_VERSION == "2."* ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python; fi - - if [[ $TRAVIS_PYTHON_VERSION == "3."* ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi - - if [[ $TRAVIS_PYTHON_VERSION == "nightly" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi - - if [[ $TRAVIS_PYTHON_VERSION == "pypy3" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3; fi + - if [[ $TRAVIS_PYTHON_VERSION == "2."* ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python --disable-documentation; fi + - if [[ $TRAVIS_PYTHON_VERSION == "3."* ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3 --disable-documentation; fi + - if [[ $TRAVIS_PYTHON_VERSION == "nightly" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3 --disable-documentation; fi + - if [[ $TRAVIS_PYTHON_VERSION == "pypy3" ]]; then ./configure --prefix=$VIRTUAL_ENV --with-python3 --disable-documentation; fi - case "$TRAVIS_PYTHON_VERSION" in nightly|3.11-dev) echo skipping xapian build;; *) make && make install; esac - PATH=$VIRTUAL_ENV/bin:$PATH
