diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-01-02 11:12:38 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-03 09:45:40 -0500 |
commit | 66a603cb739b13cfca9f85a3541f25f59a1be01c (patch) | |
tree | 500aa37ea0d048bd6cfe99471a605454fb841c20 | |
parent | 8d452d74fa6f63eb0bce0567083d375b50329de4 (diff) |
travis: remove -j2 flags
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 4ad8c249e..f975a5a91 100644 --- a/.travis.yml +++ b/.travis.yml @@ -64,7 +64,7 @@ before_script: script: - ./tools/lint.py - ./tools/test_format.py -- ./tools/build.py -C target/release -j2 +- ./tools/build.py -C target/release - DENO_BUILD_MODE=release ./tools/test.py jobs: @@ -106,7 +106,7 @@ jobs: - name: "cargo release linux" os: linux script: - - cargo build -vv --release -j2 + - cargo build -vv --release # LSAN: We are in the process of getting a completely clean LSAN build, # but it will take some work. So for now we just run a subset of the @@ -121,6 +121,6 @@ jobs: # Call gn gen again to make sure new args are recognized. - third_party/depot_tools/gn gen target/debug - export ASAN_OPTIONS=detect_leaks=1 - - ./tools/build.py test_cc -j2 + - ./tools/build.py test_cc - ./target/debug/test_cc |