https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 4e4efe412e4255c18be822c32c542f8ff1f982ba authored by ffxbld on 14 December 2015, 23:31:43 UTC
Added FIREFOX_38_5_0esr_RELEASE FIREFOX_38_5_0esr_BUILD2 tag(s) for changeset a2285d85d6dc. DONTBUILD CLOSED TREE a=release
Tip revision: 4e4efe4
.travis.yml
sudo: false
language: node_js
node_js:
  - "0.10"

notifications:
  irc: "irc.mozilla.org#jetpack"

before_install:
  - "export DISPLAY=:99.0"
  - "sh -e /etc/init.d/xvfb start"
  - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16 -extension RANDR"

before_script:
  - npm install mozilla-download -g
  - npm install jpm -g
  - cd ..
  - mozilla-download --branch nightly -c prerelease --host ftp.mozilla.org firefox
  - export JPM_FIREFOX_BINARY=$TRAVIS_BUILD_DIR/../firefox/firefox
  - cd $TRAVIS_BUILD_DIR

script:
  - npm test
back to top