osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/docker-playground/+/31001 )
Change subject: kernel_test_wait_for_vm: increase timeout to 15s
......................................................................
kernel_test_wait_for_vm: increase timeout to 15s
As we run more testsuites in parallel, the load was higher and so this
timeout was reached.
Related: OS#5802
Change-Id: I823010106a99a4906e32198ed42b36f9fe662c4e
---
M jenkins-common.sh
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/docker-playground refs/changes/01/31001/1
diff --git a/jenkins-common.sh b/jenkins-common.sh
index 2eb9aad..08d4e4e 100644
--- a/jenkins-common.sh
+++ b/jenkins-common.sh
@@ -420,7 +420,7 @@
return
fi
- for i in $(seq 1 10); do
+ for i in $(seq 1 15); do
sleep 1
if grep -q KERNEL_TEST_VM_IS_READY "$log"; then
--
To view, visit https://gerrit.osmocom.org/c/docker-playground/+/31001
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: I823010106a99a4906e32198ed42b36f9fe662c4e
Gerrit-Change-Number: 31001
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-MessageType: newchange
osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/docker-playground/+/31000 )
Change subject: network_create: set NET_NAME after next SUBNET
......................................................................
network_create: set NET_NAME after next SUBNET
Put the current SUBNET into NET_NAME, not the previous one. Without this
patch it works too, but this makes more sense.
Related: OS#5802
Change-Id: I6c90505fd6c0ba62244ff67709b0bf31bf44b449
---
M jenkins-common.sh
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/docker-playground refs/changes/00/31000/1
diff --git a/jenkins-common.sh b/jenkins-common.sh
index 484e513..2eb9aad 100644
--- a/jenkins-common.sh
+++ b/jenkins-common.sh
@@ -200,8 +200,8 @@
network_create() {
SUBNET="$PPID"
for i in $(seq 1 30); do
- NET_NAME="$SUITE_NAME-$SUBNET"
SUBNET="$(echo "($SUBNET + 1) % 256" | bc)"
+ NET_NAME="$SUITE_NAME-$SUBNET"
SUB4="172.18.$SUBNET.0/24"
SUB6="fd02:db8:$SUBNET::/64"
set +x
--
To view, visit https://gerrit.osmocom.org/c/docker-playground/+/31000
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: I6c90505fd6c0ba62244ff67709b0bf31bf44b449
Gerrit-Change-Number: 31000
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-MessageType: newchange