fix: limit EXLA C++ compilation parallelism in CI to prevent OOM
Some checks failed
Build and Push / Build and Push Docker Image (push) Has been cancelled

g++ gets OOM-killed during EXLA NIF compilation in the test step.
MAKEFLAGS=-j1 reduces peak memory by compiling one translation unit
at a time.
This commit is contained in:
Graham McIntire 2026-08-05 09:07:14 -05:00
parent 084abbfb86
commit a7e099e0e7

View file

@ -92,6 +92,7 @@ jobs:
-cf - . | \
docker run --rm -i \
-e MIX_ENV=test \
-e MAKEFLAGS="-j1" \
--network host \
-w /app \
docker.io/hexpm/elixir:1.20.1-erlang-29.0.2-debian-trixie-20260518-slim \