aboutsummaryrefslogtreecommitdiffstats
path: root/jobs
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2018-01-12 16:15:04 +0100
committerMax <msuraev@sysmocom.de>2018-01-12 17:07:27 +0000
commit971489df4a58b759689c0ad54b6cbaaa1768c65b (patch)
tree4fe31c52ab6588595411677ff112133b28c19794 /jobs
parent191a3747901675a4d34c987336e1bf925f38dcf0 (diff)
Fix missing OsmoPCU gerrit verification
The [yes, no] tuple was automatically converted to [True, False] by the jenkins-job-builder but the combination filter still used old literal check. Fix this by using boolean from the very beginning. Change-Id: Idac6e53b1e0addbcb5b6c99b8051e1e0ad26bc5b
Diffstat (limited to 'jobs')
-rw-r--r--jobs/gerrit-verifications.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/jobs/gerrit-verifications.yml b/jobs/gerrit-verifications.yml
index b421e34..192d0ad 100644
--- a/jobs/gerrit-verifications.yml
+++ b/jobs/gerrit-verifications.yml
@@ -149,15 +149,15 @@
a1_name: FIRMWARE_VERSION
a1: !!python/tuple [master, v2017.01, origin/nrw/litecell15-next]
a2_name: with_vty
- a2: !!python/tuple [yes ,no]
+ a2: !!python/tuple [True, False]
a3_name: with_dsp
a3: !!python/tuple [sysmo, lc15, none]
combination_filter: >
- (with_vty == "yes" && with_dsp == "sysmo" && FIRMWARE_VERSION=="master") ||
- (with_vty == "yes" && with_dsp == "lc15" && FIRMWARE_VERSION=="master") ||
- (with_vty == "yes" && with_dsp == "lc15" && FIRMWARE_VERSION=="v2017.01") ||
- (with_vty == "yes" && with_dsp == "lc15" && FIRMWARE_VERSION=="origin/nrw/litecell15-next") ||
- (with_vty == "no" && with_dsp == "none" && FIRMWARE_VERSION=="master")
+ (with_vty == "True" && with_dsp == "sysmo" && FIRMWARE_VERSION=="master") ||
+ (with_vty == "True" && with_dsp == "lc15" && FIRMWARE_VERSION=="master") ||
+ (with_vty == "True" && with_dsp == "lc15" && FIRMWARE_VERSION=="v2017.01") ||
+ (with_vty == "True" && with_dsp == "lc15" && FIRMWARE_VERSION=="origin/nrw/litecell15-next") ||
+ (with_vty == "False" && with_dsp == "none" && FIRMWARE_VERSION=="master")
- osmo-python-tests:
repos_url: 'ssh://jenkins@gerrit.osmocom.org:29418/python/{repos}'