Browse Source

enhance(ci): Use the default build chain on travis

Travis includes g++ and clang by default
https://docs.travis-ci.com/user/languages/c/

The ubuntu toolchain source is just used for gcc - the other packages are not
hosted there
https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/test
renovate/lint-staged-8.x
Ben Woosley 7 years ago
parent
commit
ca3f5000ae
No known key found for this signature in database GPG Key ID: 6EE5F3785F78B345
  1. 4
      .travis.yml

4
.travis.yml

@ -15,17 +15,13 @@ cache:
addons: addons:
apt: apt:
sources:
- ubuntu-toolchain-r-test
packages: packages:
- g++-4.8
- icnsutils - icnsutils
- graphicsmagick - graphicsmagick
- xz-utils - xz-utils
- xorriso - xorriso
install: install:
- export CXX="g++-4.8"
- yarn - yarn
- cd app && yarn && cd .. - cd app && yarn && cd ..
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16" - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16"

Loading…
Cancel
Save