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.
Этот коммит содержится в:
родитель
1bed192de0
коммит
f880950c3e
1 изменённых файлов: 5 добавлений и 1 удалений
|
@ -172,7 +172,11 @@ commands:
|
||||||
key: llvm-build-11-linux-v2-assert
|
key: llvm-build-11-linux-v2-assert
|
||||||
paths:
|
paths:
|
||||||
llvm-build
|
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
|
- build-wasi-libc
|
||||||
- run:
|
- run:
|
||||||
name: "Test TinyGo"
|
name: "Test TinyGo"
|
||||||
|
|
Загрузка…
Создание таблицы
Сослаться в новой задаче