diff options
author | Ben Gamari <ben@smart-cactus.org> | 2017-11-11 11:45:37 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-11-11 11:45:37 -0500 |
commit | 5f158bc1a7eedf8680f4a1e612ca34daa05e0029 (patch) | |
tree | 6145c64094e7eeefda4efa3ef8bfc38ddfaf6bec /.circleci/config.yml | |
parent | 426af53a754aa7d991d130febdec9b4af4580364 (diff) | |
download | haskell-5f158bc1a7eedf8680f4a1e612ca34daa05e0029.tar.gz |
circleci: Bump down thread count
It appears that our jobs generally run on VMs with 2 vCPUs. Consequently running
with 8 jobs will completely oversubscribe the machine. I suspect this is the
cause of #14453. Let's bump this down to 3 for now. Ideally we would determine
this from the environment.
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index c35ac219ec..b2e59eb50c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,7 +22,7 @@ aliases: name: submodules command: .circleci/fetch-submodules.sh - &buildenv - THREADS: 8 + THREADS: 3 SKIP_PERF_TESTS: YES VERBOSE: 2 - &boot |