From f532d78922ccc99c183352c2d12156ae7c58eec0 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Sun, 6 Feb 2022 19:40:15 +0600 Subject: [PATCH] fixup: debian-bullseye-titan: run 8 parallel jobs for 'make deps' Change-Id: I8fe9ff0b7c27ae7c71bd9bac6048b3073adf6bda --- debian-bullseye-titan/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian-bullseye-titan/Dockerfile b/debian-bullseye-titan/Dockerfile index 1c224565..b4b65328 100644 --- a/debian-bullseye-titan/Dockerfile +++ b/debian-bullseye-titan/Dockerfile @@ -60,7 +60,7 @@ RUN git config --global user.email docker@dock.er && \ # clone osmo-ttcn3-hacks and deps, invalidate cache if deps change (OS#5017) RUN git clone git://git.osmocom.org/osmo-ttcn3-hacks.git && \ - make -C /osmo-ttcn3-hacks deps + make -j8 -C /osmo-ttcn3-hacks deps ADD https://git.osmocom.org/osmo-ttcn3-hacks/plain/deps/Makefile /tmp/deps-Makefile RUN if ! diff -q /tmp/deps-Makefile /osmo-ttcn3-hacks/deps/Makefile; then \ cd /osmo-ttcn3-hacks && \