commit 822ab99a97b45a55c3217be043cc57c9e52c05fc parent 71a7eb26286f3a722cf1631d163d976c1d74aaba Author: Dan Stillman <dstillman@zotero.org> Date: Sun, 18 Sep 2016 18:31:17 -0400 Update command to fetch unbranded Firefox builds Since the names of the tinderbox builds apparently aren't reliable (e.g., the latest mozilla-release-linux64-add-on-devel and mozilla-beta-linux64-add-on-devel builds are both Firefox 49) Diffstat:
| M | .travis.yml | | | 5 | ++--- |
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/.travis.yml b/.travis.yml @@ -15,9 +15,8 @@ notifications: install: # Use unbranded builds for 'release' and 'beta' - if [ $FX_CHANNEL != "esr" ]; then - TS="`curl -s https://archive.mozilla.org/pub/firefox/tinderbox-builds/mozilla-${FX_CHANNEL}-linux64-add-on-devel/ | grep mozilla-$FX_CHANNEL | tail -n 1 | sed -r 's/.+add-on-devel\/([0-9]+).+/\1/'`"; - FN="`curl -s https://archive.mozilla.org/pub/firefox/tinderbox-builds/mozilla-${FX_CHANNEL}-linux64-add-on-devel/$TS/ | grep add-on-devel.tar.bz2 | head -n 1 | sed -r 's/.+>(firefox-[^<]+).+/\1/g'`"; - wget -O tarball "https://archive.mozilla.org/pub/firefox/tinderbox-builds/mozilla-${FX_CHANNEL}-linux64-add-on-devel/$TS/$FN"; + URL="`curl -s https://wiki.mozilla.org/Addons/Extension_Signing | sed -n -r \"s/.+https?(:\/\/archive.mozilla.org[^ ]+\/mozilla-${FX_CHANNEL}-linux64-add-on-devel\/[0-9]+\/.+.bz2).+/https\1/p\"`" + wget -O tarball "$URL" fi # Use official build for 'esr' - if [ $FX_CHANNEL == "esr" ]; then