-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run the benchmark on various engines as part of CI
- Loading branch information
1 parent
5442220
commit f03b110
Showing
2 changed files
with
27 additions
and
16 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,23 +1,33 @@ | ||
language: node_js | ||
os: | ||
- osx | ||
- linux | ||
node_js: | ||
- "6" | ||
- "7" | ||
- "8" | ||
- "6" | ||
- "8" | ||
- "9" | ||
script: | ||
- npm test | ||
- node dist/cli.js | ||
sudo: false | ||
- npm test | ||
- node dist/cli.js | ||
- | | ||
if [ "${TRAVIS_NODE_VERSION}" = "9" ]; then | ||
jsvu --os=linux64 --engines=all | ||
~/.jsvu/chakra dist/cli.js | ||
# ~/.jsvu/javascriptcore dist/cli.js | ||
~/.jsvu/spidermonkey dist/cli.js | ||
~/.jsvu/v8 dist/cli.js | ||
fi | ||
branches: | ||
only: | ||
only: | ||
- master | ||
|
||
deploy: | ||
local_dir: dist | ||
email: [email protected] | ||
name: Benedikt Meurer | ||
project_name: web-tooling-benchmark | ||
provider: pages | ||
skip_cleanup: true | ||
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard | ||
on: | ||
branch: master | ||
local_dir: dist | ||
email: [email protected] | ||
name: Benedikt Meurer | ||
project_name: web-tooling-benchmark | ||
provider: pages | ||
skip_cleanup: true | ||
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard | ||
on: | ||
branch: master |
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