Skip to content

Commit

Permalink
Use build.py -j2 on travis.
Browse files Browse the repository at this point in the history
Avoids OOM during rollup.
  • Loading branch information
ry committed Aug 3, 2018
1 parent d8b6864 commit d63e03a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ install:
- export CCACHE_SLOPPINESS=time_macros
- ccache -s
- ./tools/setup.py
- ./tools/build.py
# Travis hangs without -j2 argument to ninja.
- ./tools/build.py -j2
script:
- ./tools/lint.py
- ./tools/test.py $DENO_BUILD_PATH
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Window [![Windows](https://ci.appveyor.com/api/projects/status/cc7nd82n34xo4nym/

* File system and network access can be controlled in order to run sandboxed
code. Defaults to read-only file system access and no network access.
Access between V8 (unprivileged) and Golang (privileged) is only done via
Access between V8 (unprivileged) and Rust (privileged) is only done via
serialized messages defined in this
[flatbuffer](https://github.com/denoland/deno/blob/master/src/msg.fbs). This makes it
easy to audit.
Expand Down

0 comments on commit d63e03a

Please sign in to comment.