Travis debugging
This commit is contained in:
parent
d4f3f1a194
commit
1db721031c
1 changed files with 8 additions and 6 deletions
14
.travis.yml
14
.travis.yml
|
@ -14,13 +14,15 @@ notifications:
|
||||||
email: false
|
email: false
|
||||||
install:
|
install:
|
||||||
# Use unbranded builds for 'release' and 'beta'
|
# Use unbranded builds for 'release' and 'beta'
|
||||||
- test $FX_CHANNEL != "esr"
|
- 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/'`"
|
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'`"
|
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"
|
wget -O tarball "https://archive.mozilla.org/pub/firefox/tinderbox-builds/mozilla-${FX_CHANNEL}-linux64-add-on-devel/$TS/$FN";
|
||||||
|
fi
|
||||||
# Use official build for 'esr'
|
# Use official build for 'esr'
|
||||||
- test $FX_CHANNEL == "esr"
|
- if [ $FX_CHANNEL == "esr" ]; then
|
||||||
&& wget -O tarball "https://download.mozilla.org/?product=firefox${FX_CHANNEL}-latest&os=linux64&lang=en-US"
|
wget -O tarball "https://download.mozilla.org/?product=firefox${FX_CHANNEL}-latest&os=linux64&lang=en-US";
|
||||||
|
fi
|
||||||
- tar xf tarball
|
- tar xf tarball
|
||||||
before_script:
|
before_script:
|
||||||
- export DISPLAY=:99.0
|
- export DISPLAY=:99.0
|
||||||
|
|
Loading…
Add table
Reference in a new issue