Browse Source

ci(travis): only install grpc once

grpc was being compiled twice when builds run on travis. This was causing
builds to take several minutes longer than they should. installation of
the dependencies listed in app/package.json happens automatically when
`electron-builder install-app-deps` runs as part of the postinstall step.
renovate/lint-staged-8.x
Tom Kirkpatrick 7 years ago
parent
commit
63f9bd6a09
No known key found for this signature in database GPG Key ID: 72203A8EC5967EA8
  1. 1
      .travis.yml
  2. 1
      appveyor.yml

1
.travis.yml

@ -31,7 +31,6 @@ addons:
install:
- yarn
- 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"
before_script:

1
appveyor.yml

@ -25,7 +25,6 @@ install:
- ps: Install-Product node $env:nodejs_version
- set CI=true
- yarn
- cd app && yarn
test_script:
- node --version

Loading…
Cancel
Save