commit 3dab61d581fc80697ad717a866e00e5b2a47f63e parent 32b7756898b2932d0781beeaffd583726a44d7dd Author: Dan Stillman <dstillman@zotero.org> Date: Thu, 19 Nov 2015 16:16:53 -0500 Update test config for new Firefox download URLs Diffstat:
| M | .travis.yml | | | 14 | ++++++-------- |
1 file changed, 6 insertions(+), 8 deletions(-)
diff --git a/.travis.yml b/.travis.yml @@ -3,20 +3,18 @@ language: cpp compiler: - gcc env: - - FX_PATH_SUFFIX="" - - FX_PATH_SUFFIX="-esr" - - FX_PATH_SUFFIX="-beta" -# - FX_PATH_SUFFIX="-prior-esr" + - FX_CHANNEL="" + - FX_CHANNEL="-esr" + - FX_CHANNEL="-beta" matrix: fast_finish: true allow_failures: - - env: FX_PATH_SUFFIX="-beta" - - env: FX_PATH_SUFFIX="-prior-esr" + - env: FX_CHANNEL="-beta" notifications: email: false install: - - wget `curl -s "http://ftp.mozilla.org/pub/firefox/releases/latest${FX_PATH_SUFFIX}/linux-x86_64/en-US/" | grep .tar. | tail -n 1 | sed -E 's/.+(\/pub\/[^"]+).+/http:\/\/ftp.mozilla.org\1/g'` - - tar -xf firefox-*.tar.* + - wget -O tarball "https://download.mozilla.org/?product=firefox${FX_CHANNEL}-latest&os=linux64&lang=en-US" + - tar xf tarball before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start