fixeria submitted this change.

View Change

Approvals: Jenkins Builder: Verified laforge: Looks good to me, but someone else must approve osmith: Looks good to me, approved
jobs/master-builds.yml: add missing job type 'distcheck'

We do have this job type in gerrit-verifications.yml, so it's executed
for each patch submitted to Gerrit. However, we are not executing
'distcheck' during the daily master builds - fix this.

Change-Id: I4898ba712a29a6afc34bc22adec6a3131ce8c794
Fixes: 31fd5cf0 ("gerrit-verifications: execute 'distcheck' job for pysim")
---
M jobs/master-builds.yml
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/jobs/master-builds.yml b/jobs/master-builds.yml
index 9a18fc0..4fcffdf 100644
--- a/jobs/master-builds.yml
+++ b/jobs/master-builds.yml
@@ -640,10 +640,11 @@
concurrent: false
slave_axis: !!python/tuple [simtester,osmocom-master]
a2_name: JOB_TYPE
- a2: !!python/tuple ["test", "card-test", "pylint", "docs"]
+ a2: !!python/tuple ["test", "card-test", "distcheck", "pylint", "docs"]
combination_filter: >
(JOB_TYPE == "test" && label == "osmocom-master") ||
(JOB_TYPE == "card-test" && label == "simtester") ||
+ (JOB_TYPE == "distcheck" && label == "osmocom-master") ||
(JOB_TYPE == "pylint" && label == "osmocom-master") ||
(JOB_TYPE == "docs" && label == "osmocom-master")
cmd: |

To view, visit change 42670. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: merged
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I4898ba712a29a6afc34bc22adec6a3131ce8c794
Gerrit-Change-Number: 42670
Gerrit-PatchSet: 2
Gerrit-Owner: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Reviewer: laforge <laforge@osmocom.org>
Gerrit-Reviewer: osmith <osmith@sysmocom.de>