Skip to content

Commit

Permalink
fix(ci): only install grpc once
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mrfelton committed Jun 15, 2018
1 parent 4349b92 commit 8b4f916
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 0 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ install:
- ps: Install-Product node $env:nodejs_version
- set CI=true
- yarn
- cd app && yarn

test_script:
- node --version
Expand Down

0 comments on commit 8b4f916

Please sign in to comment.