Change in osmo-ci[master]: gerrit, master builds: default to concurrent: true

2019-10-18 Thread osmith
osmith has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-ci/+/15585 )

Change subject: gerrit, master builds: default to concurrent: true
..


Patch Set 8: Verified+1


--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/15585
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I5fdf759faf47ec7e4f9cb2657bd004585a667add
Gerrit-Change-Number: 15585
Gerrit-PatchSet: 8
Gerrit-Owner: osmith 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: osmith 
Gerrit-Reviewer: pespin 
Gerrit-Comment-Date: Fri, 18 Oct 2019 08:45:09 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in osmo-ci[master]: gerrit, master builds: default to concurrent: true

2019-10-18 Thread osmith
osmith has submitted this change. ( 
https://gerrit.osmocom.org/c/osmo-ci/+/15585 )

Change subject: gerrit, master builds: default to concurrent: true
..

gerrit, master builds: default to concurrent: true

Now that almost everything runs in docker, we don't need to worry about
problems with running VTY/CTRL tests in parallel for these projects.

Related: OS#3726
Change-Id: I5fdf759faf47ec7e4f9cb2657bd004585a667add
---
M jobs/gerrit-verifications.yml
M jobs/master-builds.yml
2 files changed, 12 insertions(+), 24 deletions(-)

Approvals:
  osmith: Looks good to me, approved; Verified



diff --git a/jobs/gerrit-verifications.yml b/jobs/gerrit-verifications.yml
index 83c7169..5f4385a 100644
--- a/jobs/gerrit-verifications.yml
+++ b/jobs/gerrit-verifications.yml
@@ -5,7 +5,7 @@
 name: gerrit
 # following default values can be overridden by each repo
 disabled: false
-concurrent: false
+concurrent: true
 node: osmocom-gerrit-debian8
 # axes related defaults
 slave_axis: !!python/tuple [osmocom-gerrit-debian9]
@@ -46,10 +46,7 @@
 # in alphabetical order
 repos:
   - asn1c
-
-  - cellmgr-ng:
-  concurrent: true
-
+  - cellmgr-ng
   - libasn1c
   - libgtpnl
   - libosmo-abis
@@ -73,7 +70,6 @@
   a2: !!python/tuple [--enable-mgcp-transcoding, 
--disable-mgcp-transcoding]
   a3_name: IU
   a3: !!python/tuple [--disable-iu]
-  concurrent: true
   cmd: |
 {docker_run} \
   -e IU="$IU" \
@@ -84,10 +80,10 @@
   - openggsn:
   a1_name: GTP
   a1: !!python/tuple [--enable-gtp-linux,--disable-gtp-linux]
+  concurrent: false
   cmd: ./contrib/jenkins.sh

-  - osmo-bsc:
-  concurrent: true
+  - osmo-bsc

   - osmo-bts:
   a1_name: FIRMWARE_VERSION
@@ -107,6 +103,7 @@
 (FIRMWARE_VERSION == "litecell15" && BTS_MODEL == "lc15" && 
WITH_MANUALS == "0") ||
 (FIRMWARE_VERSION == "oc2g" && BTS_MODEL == "oc2g" && WITH_MANUALS 
== "0") ||
 (FIRMWARE_VERSION == "oc2g-next" && BTS_MODEL == "oc2g" && 
WITH_MANUALS == "0")
+  concurrent: false
   cmd: 'ASCIIDOC_WARNINGS_CHECK="1" ./contrib/jenkins_bts_model.sh 
"$BTS_MODEL"'

   - osmo-ggsn:
@@ -126,16 +123,13 @@
   - osmo-gsm-manuals
   - osmo-hlr
   - osmo-iuh
-
-  - osmo-mgw:
-  concurrent: true
+  - osmo-mgw

   - osmo-msc:
   a1_name: IU
   a1: !!python/tuple [--enable-iu, --disable-iu]
   a2_name: WITH_MANUALS
   a2: !!python/tuple ["1", "0"]
-  concurrent: true
   combination_filter: >
 (IU == "--enable-iu" && WITH_MANUALS == "0") ||
 (IU == "--disable-iu" && WITH_MANUALS == "1")
@@ -156,7 +150,6 @@
   a3: !!python/tuple [sysmo, lc15, oc2g, none]
   a4_name: WITH_MANUALS
   a4: !!python/tuple ["1", "0"]
-  concurrent: true
   combination_filter: >
 (with_vty == "True" && with_dsp == "sysmo" && 
FIRMWARE_VERSION=="master" && WITH_MANUALS == "0") ||
 (with_vty == "True" && with_dsp == "lc15" && 
FIRMWARE_VERSION=="master" && WITH_MANUALS == "0") ||
@@ -181,7 +174,6 @@
   a1: !!python/tuple [--enable-iu, --disable-iu]
   a2_name: WITH_MANUALS
   a2: !!python/tuple ["1", "0"]
-  concurrent: true
   combination_filter: >
 (IU == "--enable-iu" && WITH_MANUALS == "0") ||
 (IU == "--disable-iu" && WITH_MANUALS == "1")
@@ -200,7 +192,6 @@
   a1: !!python/tuple [--with-sse]
   a2_name: WITH_MANUALS
   a2: !!python/tuple ["1", "0"]
-  concurrent: true
   combination_filter: >
 (INSTR == "--with-sse" && WITH_MANUALS == "1")
   cmd: 'ASCIIDOC_WARNINGS_CHECK=1 ./contrib/jenkins.sh'
@@ -217,11 +208,13 @@

   - pysim:
   slave_axis: !!python/tuple [simtester]
+  concurrent: false
   cmd: './contrib/jenkins.sh'

   - osmo-ttcn3-hacks:
   repos_url: 'https://gerrit.osmocom.org/{repos}'
   slave_axis: !!python/tuple [ttcn3]
+  concurrent: false
   cmd: |
 set -e
 make deps; make clean; make compile
diff --git a/jobs/master-builds.yml b/jobs/master-builds.yml
index 138807e..beebf31 1

Change in osmo-ci[master]: gerrit, master builds: default to concurrent: true

2019-10-18 Thread osmith
osmith has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-ci/+/15585 )

Change subject: gerrit, master builds: default to concurrent: true
..


Patch Set 8: Code-Review+2

Rebased on master to fix merge conflict, re-applying +2.


--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/15585
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I5fdf759faf47ec7e4f9cb2657bd004585a667add
Gerrit-Change-Number: 15585
Gerrit-PatchSet: 8
Gerrit-Owner: osmith 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: osmith 
Gerrit-Reviewer: pespin 
Gerrit-Comment-Date: Fri, 18 Oct 2019 08:45:01 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in osmo-ci[master]: gerrit, master builds: default to concurrent: true

2019-10-18 Thread osmith
Hello pespin, laforge,

I'd like you to reexamine a change. Please visit

https://gerrit.osmocom.org/c/osmo-ci/+/15585

to look at the new patch set (#8).

Change subject: gerrit, master builds: default to concurrent: true
..

gerrit, master builds: default to concurrent: true

Now that almost everything runs in docker, we don't need to worry about
problems with running VTY/CTRL tests in parallel for these projects.

Related: OS#3726
Change-Id: I5fdf759faf47ec7e4f9cb2657bd004585a667add
---
M jobs/gerrit-verifications.yml
M jobs/master-builds.yml
2 files changed, 12 insertions(+), 24 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/85/15585/8
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/15585
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I5fdf759faf47ec7e4f9cb2657bd004585a667add
Gerrit-Change-Number: 15585
Gerrit-PatchSet: 8
Gerrit-Owner: osmith 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: osmith 
Gerrit-Reviewer: pespin 
Gerrit-MessageType: newpatchset


Change in osmo-ci[master]: gerrit, master builds: default to concurrent: true

2019-10-11 Thread laforge
laforge has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-ci/+/15585 )

Change subject: gerrit, master builds: default to concurrent: true
..


Patch Set 7: Code-Review+2


--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/15585
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I5fdf759faf47ec7e4f9cb2657bd004585a667add
Gerrit-Change-Number: 15585
Gerrit-PatchSet: 7
Gerrit-Owner: osmith 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: osmith 
Gerrit-Reviewer: pespin 
Gerrit-Comment-Date: Fri, 11 Oct 2019 10:49:01 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in osmo-ci[master]: gerrit, master builds: default to concurrent: true

2019-10-11 Thread pespin
pespin has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-ci/+/15585 )

Change subject: gerrit, master builds: default to concurrent: true
..


Patch Set 7: Code-Review+1


--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/15585
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I5fdf759faf47ec7e4f9cb2657bd004585a667add
Gerrit-Change-Number: 15585
Gerrit-PatchSet: 7
Gerrit-Owner: osmith 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: osmith 
Gerrit-Reviewer: pespin 
Gerrit-Comment-Date: Fri, 11 Oct 2019 10:48:41 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in ...osmo-ci[master]: gerrit, master builds: default to concurrent: true

2019-10-11 Thread osmith
osmith has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-ci/+/15585 )

Change subject: gerrit, master builds: default to concurrent: true
..


Patch Set 7: Verified+1


--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/15585
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I5fdf759faf47ec7e4f9cb2657bd004585a667add
Gerrit-Change-Number: 15585
Gerrit-PatchSet: 7
Gerrit-Owner: osmith 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: osmith 
Gerrit-Reviewer: pespin 
Gerrit-Comment-Date: Fri, 11 Oct 2019 08:25:08 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in ...osmo-ci[master]: gerrit, master builds: default to concurrent: true

2019-10-11 Thread osmith
Hello pespin, laforge,

I'd like you to reexamine a change. Please visit

https://gerrit.osmocom.org/c/osmo-ci/+/15585

to look at the new patch set (#6).

Change subject: gerrit, master builds: default to concurrent: true
..

gerrit, master builds: default to concurrent: true

Now that almost everything runs in docker, we don't need to worry about
problems with running VTY/CTRL tests in parallel for these projects.

Related: OS#3726
Change-Id: I5fdf759faf47ec7e4f9cb2657bd004585a667add
---
M jobs/gerrit-verifications.yml
M jobs/master-builds.yml
2 files changed, 12 insertions(+), 24 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/85/15585/6
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/15585
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I5fdf759faf47ec7e4f9cb2657bd004585a667add
Gerrit-Change-Number: 15585
Gerrit-PatchSet: 6
Gerrit-Owner: osmith 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: pespin 
Gerrit-MessageType: newpatchset