From dcacf61853fb5e4e2e2f15df8ce1fbab79a8494e Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Thu, 16 Jun 2016 09:13:39 -0700 Subject: [PATCH] Add Zuul as a first-party CI name Change-Id: If9509fb8b1eb9057978cdd7335dfd576d304ada3 --- modules/openstack_project/files/gerrit/hideci.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/openstack_project/files/gerrit/hideci.js b/modules/openstack_project/files/gerrit/hideci.js index 4f91d3da14..1306fa8e0e 100644 --- a/modules/openstack_project/files/gerrit/hideci.js +++ b/modules/openstack_project/files/gerrit/hideci.js @@ -16,15 +16,15 @@ // this regex matches the hash part of review pages var hashRegex = /^\#\/c\/([\d]+)((\/\d+)([.][.](\d+))?)?\/?$/; // this regex matches CI comments -var ciRegex = /^(.* CI|Jenkins)$/; +var ciRegex = /^(.* CI|Jenkins|Zuul)$/; // this regex matches "Patch set #" var psRegex = /^(Uploaded patch set|Patch Set) (\d+)(:|\.)/; // this regex matches merge failure messages var mergeFailedRegex = /Merge Failed\./; // this regex matches the name of CI systems we trust to report merge failures -var trustedCIRegex = /^(OpenStack CI|Jenkins)$/; +var trustedCIRegex = /^(OpenStack CI|Jenkins|Zuul)$/; // this regex matches the name+pipeline that we want at the top of the CI list -var firstPartyCI = /^Jenkins/; +var firstPartyCI = /^(Jenkins|Zuul)/; // this regex matches the pipeline markup var pipelineNameRegex = /Build \w+ \((\w+) pipeline\)/; // The url to full status information on running jobs