Browse Source

ci: limit number of jobs for assert-test-linux

This job is causing OOM errors on CircleCI so limit it to just two jobs
(which should be fine on a 2CPU executor). Hopefully this fixes the
errors in CI that have occured recently.
pull/1315/head
Ayke van Laethem 4 years ago
committed by Ron Evans
parent
commit
f880950c3e
  1. 6
      .circleci/config.yml

6
.circleci/config.yml

@ -172,7 +172,11 @@ commands:
key: llvm-build-11-linux-v2-assert
paths:
llvm-build
- run: make ASSERT=1
- run: |
# Note: -p=2 limits parallelism to two jobs at a time, which is
# necessary to keep memory consumption down and avoid OOM (for a
# 2CPU/4GB executor).
GOFLAGS="-p=2" make ASSERT=1
- build-wasi-libc
- run:
name: "Test TinyGo"

Loading…
Cancel
Save