From 7b9fb36265b1db631cfcfd3cd6664586707419b2 Mon Sep 17 00:00:00 2001
From: Fatih Degirmenci <fatih.degirmenci@ericsson.com>
Date: Wed, 27 Sep 2017 19:26:40 +0200
Subject: xci: Fix skip-vote for distro jobs

Change-Id: I6dd25dca121dd6531bc2f0862da65497582bb407
Signed-off-by: Fatih Degirmenci <fatih.degirmenci@ericsson.com>
---
 jjb/xci/xci-verify-jobs.yml | 31 ++++++++++++++++++++-----------
 1 file changed, 20 insertions(+), 11 deletions(-)

diff --git a/jjb/xci/xci-verify-jobs.yml b/jjb/xci/xci-verify-jobs.yml
index b6c08acb1..c94ab9204 100644
--- a/jjb/xci/xci-verify-jobs.yml
+++ b/jjb/xci/xci-verify-jobs.yml
@@ -12,15 +12,24 @@
 # distros
 #--------------------------------
     distro:
-        - 'ubuntu':
+        - ubuntu:
             disabled: false
-            voting: true
-        - 'centos':
+            successful: false
+            failed: false
+            unstable: false
+            notbuilt: false
+        - centos:
             disabled: false
-            voting: false
-        - 'opensuse':
+            successful: true
+            failed: true
+            unstable: true
+            notbuilt: true
+        - opensuse:
             disabled: false
-            voting: false
+            successful: true
+            failed: true
+            unstable: true
+            notbuilt: true
 #--------------------------------
 # type
 #--------------------------------
@@ -112,11 +121,11 @@
                   - compare-type: ANT
                     pattern: 'docs/**'
             readable-message: true
-          skip-vote:
-            successful: '{obj:voting}'
-            failed: '{obj:voting}'
-            unstable: '{obj:voting}'
-            notbuilt: '{obj:voting}'
+            skip-vote:
+                successful: '{obj:successful}'
+                failed: '{obj:failed}'
+                unstable: '{obj:unstable}'
+                notbuilt: '{obj:notbuilt}'
 
     parameters:
         - project-parameter:
-- 
cgit