0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 17:34:47 -05:00

travis: remove -j2 flags

This commit is contained in:
Ryan Dahl 2019-01-02 11:12:38 -05:00
parent 8d452d74fa
commit 66a603cb73

View file

@ -64,7 +64,7 @@ before_script:
script: script:
- ./tools/lint.py - ./tools/lint.py
- ./tools/test_format.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 - DENO_BUILD_MODE=release ./tools/test.py
jobs: jobs:
@ -106,7 +106,7 @@ jobs:
- name: "cargo release linux" - name: "cargo release linux"
os: linux os: linux
script: script:
- cargo build -vv --release -j2 - cargo build -vv --release
# LSAN: We are in the process of getting a completely clean LSAN build, # 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 # 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. # Call gn gen again to make sure new args are recognized.
- third_party/depot_tools/gn gen target/debug - third_party/depot_tools/gn gen target/debug
- export ASAN_OPTIONS=detect_leaks=1 - export ASAN_OPTIONS=detect_leaks=1
- ./tools/build.py test_cc -j2 - ./tools/build.py test_cc
- ./target/debug/test_cc - ./target/debug/test_cc