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.
Этот коммит содержится в:
Ayke van Laethem 2021-04-06 12:19:33 +02:00 коммит произвёл Ron Evans
родитель 1bed192de0
коммит f880950c3e

Просмотреть файл

@ -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"