forked from danielgtaylor/aglio
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Increase timeout when run tests with coverage report to resolve following issues. https://travis-ci.org/Gasol/aglio/jobs/531855660 1) Executable Should start a live preview server: Error: Timeout of 5000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves. (/home/travis/build/Gasol/aglio/test/basic.coffee) at Timeout._onTimeout (test/basic.coffee:306:37) at listOnTimeout (internal/timers.js:531:17) at processTimers (internal/timers.js:475:7) 2. Keep the npm cache https://docs.travis-ci.com/user/caching/#npm-cache
- Loading branch information
Showing
3 changed files
with
19 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,24 @@ | ||
dist: xenial | ||
language: node_js | ||
sudo: false | ||
node_js: | ||
- "0.10" | ||
- "0.12" | ||
- "3" | ||
- "4" | ||
- "5" | ||
- "6" | ||
- "6" | ||
- "8" | ||
- "10" | ||
- "11" | ||
- "12" | ||
|
||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- gcc-4.8 | ||
- g++-4.8 | ||
env: CXX="g++-4.8" CC="gcc-4.8" | ||
|
||
env: | ||
- CXX="g++-4.8" CC="gcc-4.8" | ||
|
||
after_script: | ||
- npm run coveralls | ||
- if [ "$TRAVIS_NODE_VERSION" = "12" ]; then npm run coveralls; fi | ||
|
||
cache: npm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters