From 134e77b432eb25aabdc184716bfd236f8af50acf Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 24 Jan 2017 02:53:26 -0500 Subject: [PATCH] Enable 45 ESR for Travis, since it's still used on Windows --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 70735468c3..29ec58fbef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ compiler: - gcc env: - FX_VERSION="50.1.0" + - FX_VERSION="45.0.2esr" matrix: fast_finish: true #allow_failures: @@ -11,6 +12,9 @@ matrix: notifications: email: false install: + - if [ $FX_VERSION = "45.0.2esr" ]; then + wget -O tarball "https://archive.mozilla.org/pub/firefox/releases/45.0.2esr/linux-x86_64/en-US/firefox-45.0.2esr.tar.bz2"; + fi - if [ $FX_VERSION = "50.1.0" ]; then wget -O tarball "http://archive.mozilla.org/pub/firefox/tinderbox-builds/mozilla-release-linux64-add-on-devel/1481240107/firefox-50.1.0.en-US.linux-x86_64-add-on-devel.tar.bz2"; fi