Attention is currently required from: fixeria.
pespin has posted comments on this change. ( https://gerrit.osmocom.org/c/docker-playground/+/27067 )
Change subject: debian-bullseye-titan: run 8 parallel jobs for 'make deps'
......................................................................
Patch Set 1: Code-Review+1
--
To view, visit https://gerrit.osmocom.org/c/docker-playground/+/27067
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: I6349d8304a248c7ae2a5373bf23a691f3a1cb991
Gerrit-Change-Number: 27067
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Comment-Date: Fri, 04 Feb 2022 12:56:06 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/docker-playground/+/27067 )
Change subject: debian-bullseye-titan: run 8 parallel jobs for 'make deps'
......................................................................
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(-)
git pull ssh://gerrit.osmocom.org:29418/docker-playground refs/changes/67/27067/1
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 https://gerrit.osmocom.org/c/docker-playground/+/27067
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: I6349d8304a248c7ae2a5373bf23a691f3a1cb991
Gerrit-Change-Number: 27067
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newchange