try restricting circle-ci jobs to 1 cpu

master
Paul Woolcock 5 years ago
parent 583a1de7a2
commit a63b9e8dae
  1. 4
      .circleci/config.yml

@ -11,10 +11,10 @@ jobs:
name: Stable Build name: Stable Build
command: | command: |
cargo --version --verbose cargo --version --verbose
cargo build cargo build -j 1
- run: - run:
name: Stable Test name: Stable Test
command: cargo test command: cargo test -j 1
- save_cache: - save_cache:
key: project-cache key: project-cache
paths: paths:

Loading…
Cancel
Save