Skip to content

Commit 1c39e69

Browse files
committed
TravisCI: Fix fetching of xapian-bindings (issue2550931)
The server that hosts the xapian-bindings file is now serving them up via HTTPS, but for some reason wget doesn't like the certificate, while curl has no problems. Revert the previous attempts to fix this problem and replace the use of wget with curl seems to resolve the problem
1 parent 7e61155 commit 1c39e69

File tree

2 files changed

+1
-30
lines changed

2 files changed

+1
-30
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,10 @@ addons:
1212
# Required to install pyme
1313
- libgpgme11-dev
1414
- swig
15-
# allow wget to pull https url's
16-
- ca-certificates
1715

1816
before_install:
1917
- cd /tmp
20-
- wget -q --ca-certificate $TRAVIS_BUILD_DIR/tools/lets-encrypt-x3-cross-signed.pem https://oligarchy.co.uk/xapian/1.2.8/xapian-bindings-1.2.8.tar.gz
18+
- curl -s -O https://oligarchy.co.uk/xapian/1.2.8/xapian-bindings-1.2.8.tar.gz
2119
- tar -zxvf xapian-bindings-1.2.8.tar.gz
2220
- cd xapian-bindings-1.2.8/
2321
- ./configure --prefix=$VIRTUAL_ENV --with-python && make && make install

tools/lets-encrypt-x3-cross-signed.pem

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)