fixeria submitted this change.
debian-bullseye-titan: run 8 parallel jobs for 'make deps'
This reduces the time required for building test suites.
Change-Id: I6349d8304a248c7ae2a5373bf23a691f3a1cb991
---
M debian-bullseye-titan/Dockerfile
M debian-bullseye-titan/ttcn3-docker-prepare.sh
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/debian-bullseye-titan/Dockerfile b/debian-bullseye-titan/Dockerfile
index 0b1fbda..1c22456 100644
--- a/debian-bullseye-titan/Dockerfile
+++ b/debian-bullseye-titan/Dockerfile
@@ -65,7 +65,7 @@
RUN if ! diff -q /tmp/deps-Makefile /osmo-ttcn3-hacks/deps/Makefile; then \
cd /osmo-ttcn3-hacks && \
git pull && \
- make deps; \
+ make -j8 deps; \
fi
ADD ttcn3-docker-prepare.sh /usr/local/bin/ttcn3-docker-prepare
diff --git a/debian-bullseye-titan/ttcn3-docker-prepare.sh b/debian-bullseye-titan/ttcn3-docker-prepare.sh
index e4144e2..c2b28b9 100755
--- a/debian-bullseye-titan/ttcn3-docker-prepare.sh
+++ b/debian-bullseye-titan/ttcn3-docker-prepare.sh
@@ -29,7 +29,7 @@
# OSMO_TTCN3_BRANCH is different). The Dockerfile does the initial 'make deps'
# and downloads /tmp/deps-Makefile.
if ! diff -q /tmp/deps-Makefile deps/Makefile; then
- make deps
+ make -j8 deps
fi
# Link start/stop scripts to /
To view, visit change 27067. To unsubscribe, or for help writing mail filters, visit settings.