1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

Use build.py -j2 on travis.

Avoids OOM during rollup.
This commit is contained in:
Ryan Dahl 2018-08-02 21:00:13 -04:00
parent d8b68648d1
commit d63e03a8e7
2 changed files with 3 additions and 2 deletions

View file

@ -34,7 +34,8 @@ install:
- export CCACHE_SLOPPINESS=time_macros - export CCACHE_SLOPPINESS=time_macros
- ccache -s - ccache -s
- ./tools/setup.py - ./tools/setup.py
- ./tools/build.py # Travis hangs without -j2 argument to ninja.
- ./tools/build.py -j2
script: script:
- ./tools/lint.py - ./tools/lint.py
- ./tools/test.py $DENO_BUILD_PATH - ./tools/test.py $DENO_BUILD_PATH

View file

@ -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 * 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. 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 serialized messages defined in this
[flatbuffer](https://github.com/denoland/deno/blob/master/src/msg.fbs). This makes it [flatbuffer](https://github.com/denoland/deno/blob/master/src/msg.fbs). This makes it
easy to audit. easy to audit.