ci: No longer need to limit parallelism due to RocksDB

pull/24376/head
Jake Goulding 2020-05-08 10:24:01 -04:00
parent 6ca1ef6dce
commit 083ec01d0b
1 changed files with 3 additions and 3 deletions

View File

@ -58,7 +58,7 @@ jobs:
- install_clang - install_clang
- run: - run:
name: Clippy name: Clippy
command: cargo clippy --all-targets -j9 --workspace -- -D warnings command: cargo clippy --all-targets --workspace -- -D warnings
test: test:
docker: docker:
- image: circleci/rust:latest - image: circleci/rust:latest
@ -68,7 +68,7 @@ jobs:
- install_clang - install_clang
- run: - run:
name: Cargo test name: Cargo test
command: cargo test -j9 --workspace command: cargo test --workspace
- cache_save - cache_save
build: build:
docker: docker:
@ -79,7 +79,7 @@ jobs:
- install_clang - install_clang
- run: - run:
name: Cargo build name: Cargo build
command: cargo build -j9 --workspace command: cargo build --workspace
- cache_save - cache_save
workflows: workflows: