summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2017-07-25 07:28:04 -0400
committerMonty Taylor <mordred@inaugust.com>2018-03-04 07:20:40 -0600
commit4a781a7f8699f5b483f79b1bdface0ba2ba92428 (patch)
tree5455e910b312d6d6c26b3651050c503c2b891bf9 /etc
parentf93c2fb5f1751a69f8a73c2626a4638a5c0ed734 (diff)
downloadzuul-4a781a7f8699f5b483f79b1bdface0ba2ba92428.tar.gz
Use yarn and webpack to manage zuul-web javascript
yarn drives package and dependency management. webpack handles bundling, minification and transpiling down to browser-acceptable javascript but allows for more modern javascript like import statements. There are some really neat things in the webpack dev server. CSS changes, for instance, get applied immediately without a refresh. Other things, like the jquery plugin do need a refresh, but it's handled just on a file changing. As a followup, we can also consider turning the majority of the status page into a webpack library that other people can depend on as a mechanism for direct use. Things like that haven't been touched because allowing folks to poke at the existing known status page without too many changes using the tools seems like a good way for people to learn/understand the stack. Move things so that the built content gets put into zuul/web/static so that the built-in static serving from zuul-web will/can serve the files. Update MANIFEST.in so that if npm run build:dist is run before the python setup.py sdist, the built html/javascript content will be included in the source tarball. Add a pbr hook so that if yarn is installed, javascript content will be built before the tarball. Add a zuul job with a success url that contains a source_url pointing to the live v3 data. This adds a framework for verifying that we can serve the web app urls and their dependencies for all of the various ways we want to support folks hosting zuul-web. It includes a very simple reverse proxy server for approximating what we do in openstack to "white label" the Zuul service -- that is, hide the multitenancy aspect and present the single tenant at the site root. We can run similar tests without the proxy to ensure the default, multi-tenant view works as well. Add babel transpiling enabling use of ES6 features ECMAScript6 has a bunch of nice things, like block scoped variables, const, template strings and classes. Babel is a javascript transpiler which webpack can use to allow us to write using modern javascript but the resulting code to still work on older browsers. Use the babel-plugin-angularjs-annotate so that angular's dependency injection doesn't get borked by babel's transpiling things (which causes variables to otherwise be renamed in a way that causes angular to not find them) While we're at it, replace our use of var with let (let is the new block-scoped version of var) and toss in some use of const and template strings for good measure. Add StandardJS eslint config for linting JavaScript Standard Style is a code style similar to pep8/flake8. It's being added here not because of the pep8 part, but because the pyflakes equivalent can catch real errors. This uses the babel-eslint parser since we're using Babel to transpile already. This auto-formats the existing code with: npm run format Rather than using StandardJS directly through the 'standard' package, use the standardjs eslint plugin so that we can ignore the camelCase rule (and any other rule that might emerge in the future) Many of under_score/camelCase were fixed in a previous version of the patch. Since the prevailing zuul style is camelCase methods anyway, those fixes were left. That warning has now been disabled. Other things, such as == vs. === and ensuring template strings are in backticks are fixed. Ignore indentation errors for now - we'll fix them at the end of this stack and then remove the exclusion. Add a 'format' npm run target that will run the eslint command with --fix for ease of fixing reported issues. Add a 'lint' npm run target and a 'lint' environment that runs with linting turned to errors. The next patch makes the lint environment more broadly useful. When we run lint, also run the BundleAnalyzerPlugin and set the success-url to the report. Add an angular controller for status and stream page Wrap the status and stream page construction with an angular controller so that all the javascripts can be bundled in a single file. Building the files locally is wonderful and all, but what we really want is to make a tarball that has the built code so that it can be deployed. Put it in the root source dir so that it can be used with the zuul fetch-javascript-tarball role. Also, replace the custom npm job with the new build-javascript-content job which naturally grabs the content we want. Make a 'main.js' file that imports the other three so that we just have a single bundle. Then, add a 'vendor' entry in the common webpack file and use the CommonsChunkPlugin to extract dependencies into their own bundle. A second CommonsChunkPlugin entry pulls out a little bit of metadata that would otherwise cause the main and vendor chunks to change even with no source change. Then add chunkhash into the filename. This way the files themselves can be aggressively cached. This all follows recommendations from https://webpack.js.org/guides/caching/ https://webpack.js.org/guides/code-splitting/ and https://webpack.js.org/guides/output-management/ Change-Id: I2e1230783fe57f1bc3b7818460463df1e659936b Co-Authored-By: Tristan Cacqueray <tdecacqu@redhat.com> Co-Authored-By: James E. Blair <jeblair@redhat.com>
Diffstat (limited to 'etc')
-rw-r--r--etc/status/.gitignore1
-rw-r--r--etc/status/.jshintignore1
-rw-r--r--etc/status/.jshintrc21
-rw-r--r--etc/status/README.rst27
-rwxr-xr-xetc/status/fetch-dependencies.sh23
-rw-r--r--etc/status/public_html/images/black.pngbin267 -> 0 bytes
-rw-r--r--etc/status/public_html/images/green.pngbin283 -> 0 bytes
-rw-r--r--etc/status/public_html/images/grey.pngbin282 -> 0 bytes
-rw-r--r--etc/status/public_html/images/line-angle.pngbin262 -> 0 bytes
-rw-r--r--etc/status/public_html/images/line-t.pngbin204 -> 0 bytes
-rw-r--r--etc/status/public_html/images/line.pngbin183 -> 0 bytes
-rw-r--r--etc/status/public_html/images/red.pngbin286 -> 0 bytes
-rw-r--r--etc/status/public_html/index.html39
-rw-r--r--etc/status/public_html/jquery.zuul.js945
-rw-r--r--etc/status/public_html/status-basic.json-sample178
-rw-r--r--etc/status/public_html/status-openstack.json-sample312
-rw-r--r--etc/status/public_html/status-tree.json-sample1
-rw-r--r--etc/status/public_html/styles/zuul.css58
-rw-r--r--etc/status/public_html/zuul.app.js108
19 files changed, 0 insertions, 1714 deletions
diff --git a/etc/status/.gitignore b/etc/status/.gitignore
deleted file mode 100644
index 218f297df..000000000
--- a/etc/status/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-public_html/lib
diff --git a/etc/status/.jshintignore b/etc/status/.jshintignore
deleted file mode 100644
index 218f297df..000000000
--- a/etc/status/.jshintignore
+++ /dev/null
@@ -1 +0,0 @@
-public_html/lib
diff --git a/etc/status/.jshintrc b/etc/status/.jshintrc
deleted file mode 100644
index 15bd571e7..000000000
--- a/etc/status/.jshintrc
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "bitwise": true,
- "eqeqeq": true,
- "forin": true,
- "latedef": true,
- "newcap": true,
- "noarg": true,
- "noempty": true,
- "nonew": true,
- "undef": true,
- "unused": true,
-
- "strict": false,
- "laxbreak": true,
- "browser": true,
-
- "predef": [
- "jQuery",
- "zuul"
- ]
-}
diff --git a/etc/status/README.rst b/etc/status/README.rst
deleted file mode 100644
index 762b49ce4..000000000
--- a/etc/status/README.rst
+++ /dev/null
@@ -1,27 +0,0 @@
-Zuul Status
-====
-
-Zuul Status is a web portal for a Zuul server.
-
-Set up
-------------
-
-The markup generated by the javascript is fairly generic so it should be easy
-to drop into an existing portal. All it needs is
-``<div id="id="zuul-container"></div>``.
-
-Having said that, the markup is optimised for Twitter Bootstrap, though it in
-no way depends on Boostrap and any element using a bootstrap class has a
-``zuul-`` prefixed class alongside it.
-
-The script depends on jQuery (tested with version 1.8 and 1.9).
-
-The script optimises updates by stopping when the page is not visible.
-This is done by listerning to ``show`` and ``hide`` events emitted by the
-Page Visibility plugin for jQuery. If you don't want to load this plugin you
-can undo undo this optimisation by removing the code at the bottom of
-``index.html``
-
-To automatically fetch the latest versions of jQuery, the Page Visibility
-plugin and Twitter Boostrap, run the ``fetch-dependencies.sh`` script.
-The default ``index.html`` references these.
diff --git a/etc/status/fetch-dependencies.sh b/etc/status/fetch-dependencies.sh
deleted file mode 100755
index ccaf74ca8..000000000
--- a/etc/status/fetch-dependencies.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/bash
-BASE_DIR=$(cd $(dirname $0); pwd)
-DEST_DIR=$BASE_DIR/public_html/lib
-mkdir -p $DEST_DIR
-echo "Destination: $DEST_DIR"
-
-echo "Fetching jquery.min.js..."
-curl -L --silent http://code.jquery.com/jquery.min.js > $DEST_DIR/jquery.min.js
-
-echo "Fetching jquery-visibility.min.js..."
-curl -L --silent https://raw.githubusercontent.com/mathiasbynens/jquery-visibility/master/jquery-visibility.js > $DEST_DIR/jquery-visibility.js
-
-echo "Fetching jquery.graphite.js..."
-curl -L --silent https://github.com/prestontimmons/graphitejs/archive/master.zip > jquery-graphite.zip
-unzip -q -o jquery-graphite.zip -d $DEST_DIR/
-mv $DEST_DIR/graphitejs-master/jquery.graphite.js $DEST_DIR/
-rm -R jquery-graphite.zip $DEST_DIR/graphitejs-master
-
-echo "Fetching bootstrap..."
-curl -L --silent https://github.com/twbs/bootstrap/releases/download/v3.1.1/bootstrap-3.1.1-dist.zip > bootstrap.zip
-unzip -q -o bootstrap.zip -d $DEST_DIR/
-mv $DEST_DIR/bootstrap-3.1.1-dist $DEST_DIR/bootstrap
-rm bootstrap.zip
diff --git a/etc/status/public_html/images/black.png b/etc/status/public_html/images/black.png
deleted file mode 100644
index 252d87470..000000000
--- a/etc/status/public_html/images/black.png
+++ /dev/null
Binary files differ
diff --git a/etc/status/public_html/images/green.png b/etc/status/public_html/images/green.png
deleted file mode 100644
index a8765f141..000000000
--- a/etc/status/public_html/images/green.png
+++ /dev/null
Binary files differ
diff --git a/etc/status/public_html/images/grey.png b/etc/status/public_html/images/grey.png
deleted file mode 100644
index eaee0d7ce..000000000
--- a/etc/status/public_html/images/grey.png
+++ /dev/null
Binary files differ
diff --git a/etc/status/public_html/images/line-angle.png b/etc/status/public_html/images/line-angle.png
deleted file mode 100644
index fa748682a..000000000
--- a/etc/status/public_html/images/line-angle.png
+++ /dev/null
Binary files differ
diff --git a/etc/status/public_html/images/line-t.png b/etc/status/public_html/images/line-t.png
deleted file mode 100644
index cfd3111a3..000000000
--- a/etc/status/public_html/images/line-t.png
+++ /dev/null
Binary files differ
diff --git a/etc/status/public_html/images/line.png b/etc/status/public_html/images/line.png
deleted file mode 100644
index ace6bab3d..000000000
--- a/etc/status/public_html/images/line.png
+++ /dev/null
Binary files differ
diff --git a/etc/status/public_html/images/red.png b/etc/status/public_html/images/red.png
deleted file mode 100644
index e9956e8c5..000000000
--- a/etc/status/public_html/images/red.png
+++ /dev/null
Binary files differ
diff --git a/etc/status/public_html/index.html b/etc/status/public_html/index.html
deleted file mode 100644
index cc3d40a00..000000000
--- a/etc/status/public_html/index.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<!--
-Copyright 2013 OpenStack Foundation
-Copyright 2013 Timo Tijhof
-Copyright 2013 Wikimedia Foundation
-
-Licensed under the Apache License, Version 2.0 (the "License"); you may
-not use this file except in compliance with the License. You may obtain
-a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-License for the specific language governing permissions and limitations
-under the License.
--->
-<!DOCTYPE html>
-<html dir="ltr" lang="en">
-<head>
- <title>Zuul Status</title>
- <link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css">
- <link rel="stylesheet" href="styles/zuul.css" />
-</head>
-<body>
- <div id="zuul_container"></div>
- <script src="lib/jquery.min.js"></script>
- <script src="lib/jquery-visibility.js"></script>
- <script src="lib/jquery.graphite.js"></script>
- <script src="jquery.zuul.js"></script>
- <script src="zuul.app.js"></script>
- <script>
- // @license magnet:?xt=urn:btih:8e4f440f4c65981c5bf93c76d35135ba5064d8b7&dn=apache-2.0.txt Apache 2.0
- zuul_build_dom(jQuery, '#zuul_container');
- zuul_start(jQuery);
- // @license-end
- </script>
-</body>
-</html>
diff --git a/etc/status/public_html/jquery.zuul.js b/etc/status/public_html/jquery.zuul.js
deleted file mode 100644
index ac8a30281..000000000
--- a/etc/status/public_html/jquery.zuul.js
+++ /dev/null
@@ -1,945 +0,0 @@
-// jquery plugin for Zuul status page
-//
-// @licstart The following is the entire license notice for the
-// JavaScript code in this page.
-//
-// Copyright 2012 OpenStack Foundation
-// Copyright 2013 Timo Tijhof
-// Copyright 2013 Wikimedia Foundation
-// Copyright 2014 Rackspace Australia
-//
-// Licensed under the Apache License, Version 2.0 (the "License"); you may
-// not use this file except in compliance with the License. You may obtain
-// a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-// License for the specific language governing permissions and limitations
-// under the License.
-//
-// @licend The above is the entire license notice
-// for the JavaScript code in this page.
-
-(function ($) {
- 'use strict';
-
- function set_cookie(name, value) {
- document.cookie = name + '=' + value + '; path=/';
- }
-
- function read_cookie(name, default_value) {
- var nameEQ = name + '=';
- var ca = document.cookie.split(';');
- for(var i=0;i < ca.length;i++) {
- var c = ca[i];
- while (c.charAt(0) === ' ') {
- c = c.substring(1, c.length);
- }
- if (c.indexOf(nameEQ) === 0) {
- return c.substring(nameEQ.length, c.length);
- }
- }
- return default_value;
- }
-
- $.zuul = function(options) {
- options = $.extend({
- 'enabled': true,
- 'graphite_url': '',
- 'source': 'status',
- 'msg_id': '#zuul_msg',
- 'pipelines_id': '#zuul_pipelines',
- 'queue_events_num': '#zuul_queue_events_num',
- 'queue_management_events_num': '#zuul_queue_management_events_num',
- 'queue_results_num': '#zuul_queue_results_num',
- }, options);
-
- var collapsed_exceptions = [];
- var current_filter = read_cookie('zuul_filter_string', '');
- var change_set_in_url = window.location.href.split('#')[1];
- if (change_set_in_url) {
- current_filter = change_set_in_url;
- }
- var $jq;
-
- var xhr,
- zuul_graph_update_count = 0,
- zuul_sparkline_urls = {};
-
- function get_sparkline_url(pipeline_name) {
- if (options.graphite_url !== '') {
- if (!(pipeline_name in zuul_sparkline_urls)) {
- zuul_sparkline_urls[pipeline_name] = $.fn.graphite
- .geturl({
- url: options.graphite_url,
- from: "-8hours",
- width: 100,
- height: 26,
- margin: 0,
- hideLegend: true,
- hideAxes: true,
- hideGrid: true,
- target: [
- "color(stats.gauges.zuul.pipeline." + pipeline_name
- + ".current_changes, '6b8182')"
- ]
- });
- }
- return zuul_sparkline_urls[pipeline_name];
- }
- return false;
- }
-
- var format = {
- job: function(job) {
- var $job_line = $('<span />');
-
- if (job.result !== null) {
- $job_line.append(
- $('<a />')
- .addClass('zuul-job-name')
- .attr('href', job.report_url)
- .text(job.name)
- );
- }
- else if (job.url !== null) {
- $job_line.append(
- $('<a />')
- .addClass('zuul-job-name')
- .attr('href', job.url)
- .text(job.name)
- );
- }
- else {
- $job_line.append(
- $('<span />')
- .addClass('zuul-job-name')
- .text(job.name)
- );
- }
-
- $job_line.append(this.job_status(job));
-
- if (job.voting === false) {
- $job_line.append(
- $(' <small />')
- .addClass('zuul-non-voting-desc')
- .text(' (non-voting)')
- );
- }
-
- $job_line.append($('<div style="clear: both"></div>'));
- return $job_line;
- },
-
- job_status: function(job) {
- var result = job.result ? job.result.toLowerCase() : null;
- if (result === null) {
- result = job.url ? 'in progress' : 'queued';
- }
-
- if (result === 'in progress') {
- return this.job_progress_bar(job.elapsed_time,
- job.remaining_time);
- }
- else {
- return this.status_label(result);
- }
- },
-
- status_label: function(result) {
- var $status = $('<span />');
- $status.addClass('zuul-job-result label');
-
- switch (result) {
- case 'success':
- $status.addClass('label-success');
- break;
- case 'failure':
- $status.addClass('label-danger');
- break;
- case 'unstable':
- $status.addClass('label-warning');
- break;
- case 'skipped':
- $status.addClass('label-info');
- break;
- // 'in progress' 'queued' 'lost' 'aborted' ...
- default:
- $status.addClass('label-default');
- }
- $status.text(result);
- return $status;
- },
-
- job_progress_bar: function(elapsed_time, remaining_time) {
- var progress_percent = 100 * (elapsed_time / (elapsed_time +
- remaining_time));
- var $bar_inner = $('<div />')
- .addClass('progress-bar')
- .attr('role', 'progressbar')
- .attr('aria-valuenow', 'progressbar')
- .attr('aria-valuemin', progress_percent)
- .attr('aria-valuemin', '0')
- .attr('aria-valuemax', '100')
- .css('width', progress_percent + '%');
-
- var $bar_outter = $('<div />')
- .addClass('progress zuul-job-result')
- .append($bar_inner);
-
- return $bar_outter;
- },
-
- enqueue_time: function(ms) {
- // Special format case for enqueue time to add style
- var hours = 60 * 60 * 1000;
- var now = Date.now();
- var delta = now - ms;
- var status = 'text-success';
- var text = this.time(delta, true);
- if (delta > (4 * hours)) {
- status = 'text-danger';
- } else if (delta > (2 * hours)) {
- status = 'text-warning';
- }
- return '<span class="' + status + '">' + text + '</span>';
- },
-
- time: function(ms, words) {
- if (typeof(words) === 'undefined') {
- words = false;
- }
- var seconds = (+ms)/1000;
- var minutes = Math.floor(seconds/60);
- var hours = Math.floor(minutes/60);
- seconds = Math.floor(seconds % 60);
- minutes = Math.floor(minutes % 60);
- var r = '';
- if (words) {
- if (hours) {
- r += hours;
- r += ' hr ';
- }
- r += minutes + ' min';
- } else {
- if (hours < 10) {
- r += '0';
- }
- r += hours + ':';
- if (minutes < 10) {
- r += '0';
- }
- r += minutes + ':';
- if (seconds < 10) {
- r += '0';
- }
- r += seconds;
- }
- return r;
- },
-
- change_total_progress_bar: function(change) {
- var job_percent = Math.floor(100 / change.jobs.length);
- var $bar_outter = $('<div />')
- .addClass('progress zuul-change-total-result');
-
- $.each(change.jobs, function (i, job) {
- var result = job.result ? job.result.toLowerCase() : null;
- if (result === null) {
- result = job.url ? 'in progress' : 'queued';
- }
-
- if (result !== 'queued') {
- var $bar_inner = $('<div />')
- .addClass('progress-bar');
-
- switch (result) {
- case 'success':
- $bar_inner.addClass('progress-bar-success');
- break;
- case 'lost':
- case 'failure':
- $bar_inner.addClass('progress-bar-danger');
- break;
- case 'unstable':
- $bar_inner.addClass('progress-bar-warning');
- break;
- case 'in progress':
- case 'queued':
- break;
- }
- $bar_inner.attr('title', job.name)
- .css('width', job_percent + '%');
- $bar_outter.append($bar_inner);
- }
- });
- return $bar_outter;
- },
-
- change_header: function(change) {
- var change_id = change.id || 'NA';
-
- var $change_link = $('<small />');
- if (change.url !== null) {
- var github_id = change_id.match(/^([0-9]+),([0-9a-f]{40})$/);
- if (github_id) {
- $change_link.append(
- $('<a />').attr('href', change.url).append(
- $('<abbr />')
- .attr('title', change_id)
- .text('#' + github_id[1])
- )
- );
- } else if (/^[0-9a-f]{40}$/.test(change_id)) {
- var change_id_short = change_id.slice(0, 7);
- $change_link.append(
- $('<a />').attr('href', change.url).append(
- $('<abbr />')
- .attr('title', change_id)
- .text(change_id_short)
- )
- );
- }
- else {
- $change_link.append(
- $('<a />').attr('href', change.url).text(change_id)
- );
- }
- }
- else {
- if (change_id.length === 40) {
- change_id = change_id.substr(0, 7);
- }
- $change_link.text(change_id);
- }
-
- var $change_progress_row_left = $('<div />')
- .addClass('col-xs-4')
- .append($change_link);
- var $change_progress_row_right = $('<div />')
- .addClass('col-xs-8')
- .append(this.change_total_progress_bar(change));
-
- var $change_progress_row = $('<div />')
- .addClass('row')
- .append($change_progress_row_left)
- .append($change_progress_row_right);
-
- var $project_span = $('<span />')
- .addClass('change_project')
- .text(change.project);
-
- var $left = $('<div />')
- .addClass('col-xs-8')
- .append($project_span, $change_progress_row);
-
- var remaining_time = this.time(
- change.remaining_time, true);
- var enqueue_time = this.enqueue_time(
- change.enqueue_time);
- var $remaining_time = $('<small />').addClass('time')
- .attr('title', 'Remaining Time').html(remaining_time);
- var $enqueue_time = $('<small />').addClass('time')
- .attr('title', 'Elapsed Time').html(enqueue_time);
-
- var $right = $('<div />');
- if (change.live === true) {
- $right.addClass('col-xs-4 text-right')
- .append($remaining_time, $('<br />'), $enqueue_time);
- }
-
- var $header = $('<div />')
- .addClass('row')
- .append($left, $right);
- return $header;
- },
-
- change_list: function(jobs) {
- var format = this;
- var $list = $('<ul />')
- .addClass('list-group zuul-patchset-body');
-
- $.each(jobs, function (i, job) {
- var $item = $('<li />')
- .addClass('list-group-item')
- .addClass('zuul-change-job')
- .append(format.job(job));
- $list.append($item);
- });
-
- return $list;
- },
-
- change_panel: function (change) {
- var $header = $('<div />')
- .addClass('panel-heading zuul-patchset-header')
- .append(this.change_header(change));
-
- var panel_id = change.id ? change.id.replace(',', '_')
- : change.project.replace('/', '_') +
- '-' + change.enqueue_time;
- var $panel = $('<div />')
- .attr('id', panel_id)
- .addClass('panel panel-default zuul-change')
- .append($header)
- .append(this.change_list(change.jobs));
-
- $header.click(this.toggle_patchset);
- return $panel;
- },
-
- change_status_icon: function(change) {
- var icon_name = 'green.png';
- var icon_title = 'Succeeding';
-
- if (change.active !== true) {
- // Grey icon
- icon_name = 'grey.png';
- icon_title = 'Waiting until closer to head of queue to' +
- ' start jobs';
- }
- else if (change.live !== true) {
- // Grey icon
- icon_name = 'grey.png';
- icon_title = 'Dependent change required for testing';
- }
- else if (change.failing_reasons &&
- change.failing_reasons.length > 0) {
- var reason = change.failing_reasons.join(', ');
- icon_title = 'Failing because ' + reason;
- if (reason.match(/merge conflict/)) {
- // Black icon
- icon_name = 'black.png';
- }
- else {
- // Red icon
- icon_name = 'red.png';
- }
- }
-
- var $icon = $('<img />')
- .attr('src', 'images/' + icon_name)
- .attr('title', icon_title)
- .css('margin-top', '-6px');
-
- return $icon;
- },
-
- change_with_status_tree: function(change, change_queue) {
- var $change_row = $('<tr />');
-
- for (var i = 0; i < change_queue._tree_columns; i++) {
- var $tree_cell = $('<td />')
- .css('height', '100%')
- .css('padding', '0 0 10px 0')
- .css('margin', '0')
- .css('width', '16px')
- .css('min-width', '16px')
- .css('overflow', 'hidden')
- .css('vertical-align', 'top');
-
- if (i < change._tree.length && change._tree[i] !== null) {
- $tree_cell.css('background-image',
- 'url(\'images/line.png\')')
- .css('background-repeat', 'repeat-y');
- }
-
- if (i === change._tree_index) {
- $tree_cell.append(
- this.change_status_icon(change));
- }
- if (change._tree_branches.indexOf(i) !== -1) {
- var $image = $('<img />')
- .css('vertical-align', 'baseline');
- if (change._tree_branches.indexOf(i) ===
- change._tree_branches.length - 1) {
- // Angle line
- $image.attr('src', 'images/line-angle.png');
- }
- else {
- // T line
- $image.attr('src', 'images/line-t.png');
- }
- $tree_cell.append($image);
- }
- $change_row.append($tree_cell);
- }
-
- var change_width = 360 - 16*change_queue._tree_columns;
- var $change_column = $('<td />')
- .css('width', change_width + 'px')
- .addClass('zuul-change-cell')
- .append(this.change_panel(change));
-
- $change_row.append($change_column);
-
- var $change_table = $('<table />')
- .addClass('zuul-change-box')
- .css('-moz-box-sizing', 'content-box')
- .css('box-sizing', 'content-box')
- .append($change_row);
-
- return $change_table;
- },
-
- pipeline_sparkline: function(pipeline_name) {
- if (options.graphite_url !== '') {
- var $sparkline = $('<img />')
- .addClass('pull-right')
- .attr('src', get_sparkline_url(pipeline_name));
- return $sparkline;
- }
- return false;
- },
-
- pipeline_header: function(pipeline, count) {
- // Format the pipeline name, sparkline and description
- var $header_div = $('<div />')
- .addClass('zuul-pipeline-header');
-
- var $heading = $('<h3 />')
- .css('vertical-align', 'middle')
- .text(pipeline.name)
- .append(
- $('<span />')
- .addClass('badge pull-right')
- .css('vertical-align', 'middle')
- .css('margin-top', '0.5em')
- .text(count)
- )
- .append(this.pipeline_sparkline(pipeline.name));
-
- $header_div.append($heading);
-
- if (typeof pipeline.description === 'string') {
- var descr = $('<small />')
- $.each( pipeline.description.split(/\r?\n\r?\n/), function(index, descr_part){
- descr.append($('<p />').text(descr_part));
- });
- $header_div.append(
- $('<p />').append(descr)
- );
- }
- return $header_div;
- },
-
- pipeline: function (pipeline, count) {
- var format = this;
- var $html = $('<div />')
- .addClass('zuul-pipeline col-md-4')
- .append(this.pipeline_header(pipeline, count));
-
- $.each(pipeline.change_queues,
- function (queue_i, change_queue) {
- $.each(change_queue.heads, function (head_i, changes) {
- if (pipeline.change_queues.length > 1 &&
- head_i === 0) {
- var name = change_queue.name;
- var short_name = name;
- if (short_name.length > 32) {
- short_name = short_name.substr(0, 32) + '...';
- }
- $html.append(
- $('<p />')
- .text('Queue: ')
- .append(
- $('<abbr />')
- .attr('title', name)
- .text(short_name)
- )
- );
- }
-
- $.each(changes, function (change_i, change) {
- var $change_box =
- format.change_with_status_tree(
- change, change_queue);
- $html.append($change_box);
- format.display_patchset($change_box);
- });
- });
- });
- return $html;
- },
-
- toggle_patchset: function(e) {
- // Toggle showing/hiding the patchset when the header is
- // clicked.
-
- if (e.target.nodeName.toLowerCase() === 'a') {
- // Ignore clicks from gerrit patch set link
- return;
- }
-
- // Grab the patchset panel
- var $panel = $(e.target).parents('.zuul-change');
- var $body = $panel.children('.zuul-patchset-body');
- $body.toggle(200);
- var collapsed_index = collapsed_exceptions.indexOf(
- $panel.attr('id'));
- if (collapsed_index === -1 ) {
- // Currently not an exception, add it to list
- collapsed_exceptions.push($panel.attr('id'));
- }
- else {
- // Currently an except, remove from exceptions
- collapsed_exceptions.splice(collapsed_index, 1);
- }
- },
-
- display_patchset: function($change_box, animate) {
- // Determine if to show or hide the patchset and/or the results
- // when loaded
-
- // See if we should hide the body/results
- var $panel = $change_box.find('.zuul-change');
- var panel_change = $panel.attr('id');
- var $body = $panel.children('.zuul-patchset-body');
- var expand_by_default = $('#expand_by_default')
- .prop('checked');
-
- var collapsed_index = collapsed_exceptions
- .indexOf(panel_change);
-
- if (expand_by_default && collapsed_index === -1 ||
- !expand_by_default && collapsed_index !== -1) {
- // Expand by default, or is an exception
- $body.show(animate);
- }
- else {
- $body.hide(animate);
- }
-
- // Check if we should hide the whole panel
- var panel_project = $panel.find('.change_project').text()
- .toLowerCase();
-
-
- var panel_pipeline = $change_box
- .parents('.zuul-pipeline')
- .find('.zuul-pipeline-header > h3')
- .html()
- .toLowerCase();
-
- if (current_filter !== '') {
- var show_panel = false;
- var filter = current_filter.trim().split(/[\s,]+/);
- $.each(filter, function(index, f_val) {
- if (f_val !== '') {
- f_val = f_val.toLowerCase();
- if (panel_project.indexOf(f_val) !== -1 ||
- panel_pipeline.indexOf(f_val) !== -1 ||
- panel_change.indexOf(f_val) !== -1) {
- show_panel = true;
- }
- }
- });
- if (show_panel === true) {
- $change_box.show(animate);
- }
- else {
- $change_box.hide(animate);
- }
- }
- else {
- $change_box.show(animate);
- }
- },
- };
-
- var app = {
- schedule: function (app) {
- app = app || this;
- if (!options.enabled) {
- setTimeout(function() {app.schedule(app);}, 5000);
- return;
- }
- app.update().always(function () {
- setTimeout(function() {app.schedule(app);}, 5000);
- });
-
- /* Only update graphs every minute */
- if (zuul_graph_update_count > 11) {
- zuul_graph_update_count = 0;
- zuul.update_sparklines();
- }
- },
-
- /** @return {jQuery.Promise} */
- update: function () {
- // Cancel the previous update if it hasn't completed yet.
- if (xhr) {
- xhr.abort();
- }
-
- this.emit('update-start');
- var app = this;
-
- var $msg = $(options.msg_id);
- xhr = $.getJSON(options.source)
- .done(function (data) {
- if ('message' in data) {
- $msg.removeClass('alert-danger')
- .addClass('alert-info')
- .text(data.message)
- .show();
- } else {
- $msg.empty()
- .hide();
- }
-
- if ('zuul_version' in data) {
- $('#zuul-version-span').text(data.zuul_version);
- }
- if ('last_reconfigured' in data) {
- var last_reconfigured =
- new Date(data.last_reconfigured);
- $('#last-reconfigured-span').text(
- last_reconfigured.toString());
- }
-
- var $pipelines = $(options.pipelines_id);
- $pipelines.html('');
- $.each(data.pipelines, function (i, pipeline) {
- var count = app.create_tree(pipeline);
- $pipelines.append(
- format.pipeline(pipeline, count));
- });
-
- $(options.queue_events_num).text(
- data.trigger_event_queue ?
- data.trigger_event_queue.length : '0'
- );
- $(options.queue_management_events_num).text(
- data.management_event_queue ?
- data.management_event_queue.length : '0'
- );
- $(options.queue_results_num).text(
- data.result_event_queue ?
- data.result_event_queue.length : '0'
- );
- })
- .fail(function (jqXHR, statusText, errMsg) {
- if (statusText === 'abort') {
- return;
- }
- $msg.text(options.source + ': ' + errMsg)
- .addClass('alert-danger')
- .removeClass('zuul-msg-wrap-off')
- .show();
- })
- .always(function () {
- xhr = undefined;
- app.emit('update-end');
- });
-
- return xhr;
- },
-
- update_sparklines: function() {
- $.each(zuul_sparkline_urls, function(name, url) {
- var newimg = new Image();
- var parts = url.split('#');
- newimg.src = parts[0] + '#' + new Date().getTime();
- $(newimg).load(function () {
- zuul_sparkline_urls[name] = newimg.src;
- });
- });
- },
-
- emit: function () {
- $jq.trigger.apply($jq, arguments);
- return this;
- },
- on: function () {
- $jq.on.apply($jq, arguments);
- return this;
- },
- one: function () {
- $jq.one.apply($jq, arguments);
- return this;
- },
-
- control_form: function() {
- // Build the filter form filling anything from cookies
-
- var $control_form = $('<form />')
- .attr('role', 'form')
- .addClass('form-inline')
- .submit(this.handle_filter_change);
-
- $control_form
- .append(this.filter_form_group())
- .append(this.expand_form_group());
-
- return $control_form;
- },
-
- filter_form_group: function() {
- // Update the filter form with a clear button if required
-
- var $label = $('<label />')
- .addClass('control-label')
- .attr('for', 'filter_string')
- .text('Filters')
- .css('padding-right', '0.5em');
-
- var $input = $('<input />')
- .attr('type', 'text')
- .attr('id', 'filter_string')
- .addClass('form-control')
- .attr('title',
- 'project(s), pipeline(s) or review(s) comma ' +
- 'separated')
- .attr('value', current_filter);
-
- $input.change(this.handle_filter_change);
-
- var $clear_icon = $('<span />')
- .addClass('form-control-feedback')
- .addClass('glyphicon glyphicon-remove-circle')
- .attr('id', 'filter_form_clear_box')
- .attr('title', 'clear filter')
- .css('cursor', 'pointer');
-
- $clear_icon.click(function() {
- $('#filter_string').val('').change();
- });
-
- if (current_filter === '') {
- $clear_icon.hide();
- }
-
- var $form_group = $('<div />')
- .addClass('form-group has-feedback')
- .append($label, $input, $clear_icon);
- return $form_group;
- },
-
- expand_form_group: function() {
- var expand_by_default = (
- read_cookie('zuul_expand_by_default', false) === 'true');
-
- var $checkbox = $('<input />')
- .attr('type', 'checkbox')
- .attr('id', 'expand_by_default')
- .prop('checked', expand_by_default)
- .change(this.handle_expand_by_default);
-
- var $label = $('<label />')
- .css('padding-left', '1em')
- .html('Expand by default: ')
- .append($checkbox);
-
- var $form_group = $('<div />')
- .addClass('checkbox')
- .append($label);
- return $form_group;
- },
-
- handle_filter_change: function() {
- // Update the filter and save it to a cookie
- current_filter = $('#filter_string').val();
- set_cookie('zuul_filter_string', current_filter);
- if (current_filter === '') {
- $('#filter_form_clear_box').hide();
- }
- else {
- $('#filter_form_clear_box').show();
- }
-
- $('.zuul-change-box').each(function(index, obj) {
- var $change_box = $(obj);
- format.display_patchset($change_box, 200);
- });
- return false;
- },
-
- handle_expand_by_default: function(e) {
- // Handle toggling expand by default
- set_cookie('zuul_expand_by_default', e.target.checked);
- collapsed_exceptions = [];
- $('.zuul-change-box').each(function(index, obj) {
- var $change_box = $(obj);
- format.display_patchset($change_box, 200);
- });
- },
-
- create_tree: function(pipeline) {
- var count = 0;
- var pipeline_max_tree_columns = 1;
- $.each(pipeline.change_queues, function(change_queue_i,
- change_queue) {
- var tree = [];
- var max_tree_columns = 1;
- var changes = [];
- var last_tree_length = 0;
- $.each(change_queue.heads, function(head_i, head) {
- $.each(head, function(change_i, change) {
- changes[change.id] = change;
- change._tree_position = change_i;
- });
- });
- $.each(change_queue.heads, function(head_i, head) {
- $.each(head, function(change_i, change) {
- if (change.live === true) {
- count += 1;
- }
- var idx = tree.indexOf(change.id);
- if (idx > -1) {
- change._tree_index = idx;
- // remove...
- tree[idx] = null;
- while (tree[tree.length - 1] === null) {
- tree.pop();
- }
- } else {
- change._tree_index = 0;
- }
- change._tree_branches = [];
- change._tree = [];
- if (typeof(change.items_behind) === 'undefined') {
- change.items_behind = [];
- }
- change.items_behind.sort(function(a, b) {
- return (changes[b]._tree_position -
- changes[a]._tree_position);
- });
- $.each(change.items_behind, function(i, id) {
- tree.push(id);
- if (tree.length>last_tree_length &&
- last_tree_length > 0) {
- change._tree_branches.push(
- tree.length - 1);
- }
- });
- if (tree.length > max_tree_columns) {
- max_tree_columns = tree.length;
- }
- if (tree.length > pipeline_max_tree_columns) {
- pipeline_max_tree_columns = tree.length;
- }
- change._tree = tree.slice(0); // make a copy
- last_tree_length = tree.length;
- });
- });
- change_queue._tree_columns = max_tree_columns;
- });
- pipeline._tree_columns = pipeline_max_tree_columns;
- return count;
- },
- };
-
- $jq = $(app);
- return {
- options: options,
- format: format,
- app: app,
- jq: $jq
- };
- };
-}(jQuery));
diff --git a/etc/status/public_html/status-basic.json-sample b/etc/status/public_html/status-basic.json-sample
deleted file mode 100644
index 63745a30b..000000000
--- a/etc/status/public_html/status-basic.json-sample
+++ /dev/null
@@ -1,178 +0,0 @@
-{
- "last_reconfigured": 1389381756000,
- "message": "Example info message",
- "pipelines": [
- {
- "name": "test",
- "description": "Lint and unit tests",
- "change_queues": [
- {
- "name": "some-jobs@worker301.ci-example.org",
- "heads": [
- [
- {
- "id": "10101,1",
- "url": "#!/review.example.org/r/10101",
- "project": "openstack/infra/zuul",
- "jobs": [
- {
- "name": "zuul-merge",
- "url": "#!/jenkins.example.org/job/zuul-merge/201",
- "result": "SUCCESS",
- "voting": true
- },
- {
- "name": "zuul-lint",
- "url": "#!/jenkins.example.org/job/zuul-lint/201",
- "result": "SUCCESS",
- "voting": true
- },
- {
- "name": "zuul-test",
- "url": "#!/jenkins.example.org/job/zuul-test/201",
- "result": "SUCCESS",
- "voting": true
- }
- ]
- }
- ],
- [
- {
- "id": "10103,1",
- "url": "#!/review.example.org/r/10103",
- "project": "google/gerrit",
- "jobs": [
- {
- "name": "gerrit-merge",
- "url": "#!/jenkins.example.org/job/gerrit-merge/203",
- "result": "SUCCESS",
- "voting": false
- }
- ]
- }
- ]
- ]
- },
- {
- "name": "other-jobs@worker301.ci-example.org",
- "heads": [
- [
- {
- "id": "10102,1",
- "url": "#!/review.example.org/r/10102",
- "project": "google/gerrit",
- "jobs": [
- {
- "name": "gerrit-merge",
- "url": "#!/jenkins.example.org/job/gerrit-merge/202",
- "result": "UNSTABLE",
- "voting": false
- }
- ]
- }
- ],
- [
- {
- "id": "10104,1",
- "url": "#!/review.example.org/r/10104",
- "project": "openstack/infra/zuul",
- "jobs": [
- {
- "name": "zuul-merge",
- "url": "#!/jenkins.example.org/job/zuul-merge/204",
- "result": "SUCCESS",
- "voting": true
- },
- {
- "name": "zuul-lint",
- "url": "#!/jenkins.example.org/job/zuul-lint/204",
- "result": "FAILURE",
- "voting": true
- },
- {
- "name": "zuul-test",
- "url": "#!/jenkins.example.org/job/zuul-test/204",
- "result": null,
- "voting": true
- }
- ]
- }
- ]
- ]
- }
- ]
- },
- {
- "name": "gate-and-submit",
- "change_queues": []
- },
- {
- "name": "postmerge",
- "change_queues": [
- {
- "name": "some-jobs@worker301.ci-example.org",
- "heads": [
- [
- {
- "id": "7f1d65cb0f663c907698f915da01c008c7ef4748",
- "url": "#!/review.example.org/r/10100",
- "project": "openstack/infra/zuul",
- "jobs": [
- {
- "name": "zuul-lint",
- "url": "#!/jenkins.example.org/job/zuul-lint/200",
- "result": "SUCCESS",
- "voting": true
- },
- {
- "name": "zuul-test",
- "url": "#!/jenkins.example.org/job/zuul-test/200",
- "result": "FAILURE",
- "voting": true
- },
- {
- "name": "zuul-regression-python2",
- "url": "#!/jenkins.example.org/job/zuul-regression-python2/200",
- "result": "SUCCESS",
- "voting": true
- },
- {
- "name": "zuul-regression-python3",
- "url": "#!/jenkins.example.org/job/zuul-regression-python3/200",
- "result": "FAILURE",
- "voting": true
- },
- {
- "name": "zuul-performance-python2",
- "url": null,
- "result": null,
- "voting": true
- },
- {
- "name": "zuul-performance-python3",
- "url": null,
- "result": null,
- "voting": true
- },
- {
- "name": "zuul-docs-publish",
- "url": null,
- "result": null,
- "voting": true
- }
- ]
- }
- ]
- ]
- }
- ]
- }
- ],
- "trigger_event_queue": {
- "length": 0
- },
- "result_event_queue": {
- "length": 0
- },
- "zuul_version": "2.0.0.19"
-}
diff --git a/etc/status/public_html/status-openstack.json-sample b/etc/status/public_html/status-openstack.json-sample
deleted file mode 100644
index 41c231a39..000000000
--- a/etc/status/public_html/status-openstack.json-sample
+++ /dev/null
@@ -1,312 +0,0 @@
-{
- "last_reconfigured": 1389381756000,
- "pipelines": [
- {
- "name": "check",
- "description": "Newly uploaded patchsets enter this pipeline to receive an initial +/-1 Verified vote from Jenkins.",
- "change_queues": [
- {
- "heads": [],
- "name": "stackforge/tripleo-image-elements"
- }
- ]
- },
- {
- "description": "Changes that have been approved by core developers are enqueued in order in this pipeline, and .",
- "change_queues": [
- {
- "heads": [],
- "name": "openstack-detackforge/reddwarf-integration"
- },
- {
- "heads": [],
- "name": "stackforge/moniker"
- },
- {
- "heads": [
- [
- {
- "url": "https://review.openstack.org/26292",
- "project": "openstack/quantum",
- "jobs": [
- {
- "url": "https://jenkins.openstack.org/job/gate-quantum-docs/5501/consoleFull",
- "voting": true,
- "result": "SUCCESS",
- "name": "gate-quantum-docs"
- },
- {
- "url": "https://jenkins.openstack.org/job/gate-quantum-pep8/6254/consoleFull",
- "voting": true,
- "result": "SUCCESS",
- "name": "gate-quantum-pep8"
- },
- {
- "url": "https://jenkins.openstack.org/job/gate-quantum-python26/5876/",
- "voting": true,
- "result": null,
- "name": "gate-quantum-python26"
- },
- {
- "url": "https://jenkins.openstack.org/job/gate-quantum-python27/5887/",
- "voting": true,
- "result": null,
- "name": "gate-quantum-python27"
- },
- {
- "url": "https://jenkins.openstack.org/job/gate-tempest-devstack-vm-quantum/17548/",
- "voting": true,
- "result": null,
- "name": "gate-tempest-devstack-vm-quantum"
- }
- ],
- "id": "26292,1"
- }
- ]
- ],
- "name": "openstack-dev/devstack, openstack-infra/devstack-gate, openstack/cinder, openstack/glance, openstack/horizon, openstack/keystone, openstack/nova, openstack/python-cinderclient, openstack/python-glanceclient, openstack/python-keystoneclient, openstack/python-novaclient, openstack/python-quantumclient, openstack/quantum, openstack/swift, openstack/tempest, z/tempest"
- },
- {
- "heads": [],
- "name": "openstack/ceilometer"
- },
- {
- "heads": [],
- "name": "stackforge/puppet-openstack"
- },
- {
- "heads": [],
- "name": "stackforge/puppet-cinder"
- },
- {
- "heads": [],
- "name": "stackforge/marconi"
- },
- {
- "heads": [],
- "name": "openstack-infra/config"
- },
- {
- "heads": [],
- "name": "stackforge/tripleo-image-elements"
- },
- {
- "heads": [],
- "name": "stackforge/kwapi"
- },
- {
- "heads": [],
- "name": "stackforge/python-reddwarfclient"
- },
- {
- "heads": [],
- "name": "stackforge/python-savannaclient"
- },
- {
- "heads": [],
- "name": "stackforge/python-monikerclient"
- },
- {
- "heads": [],
- "name": "stackforge/packstack"
- },
- {
- "heads": [],
- "name": "openstack/oslo.config"
- },
- {
- "heads": [],
- "name": "openstack-infra/jenkins-job-builder"
- },
- {
- "heads": [],
- "name": "stackforge/puppet-horizon"
- },
- {
- "heads": [],
- "name": "openstack/heat-cfntools"
- },
- {
- "heads": [],
- "name": "openstack/oslo-incubator"
- },
- {
- "heads": [],
- "name": "stackforge/os-config-applier"
- },
- {
- "heads": [],
- "name": "openstack/requirements"
- },
- {
- "heads": [],
- "name": "stackforge/puppet-glance"
- },
- {
- "heads": [],
- "name": "openstack-infra/gearman-plugin"
- },
- {
- "heads": [],
- "name": "stackforge/puppet-keystone"
- },
- {
- "heads": [],
- "name": "stackforge/puppet-nova"
- },
- {
- "heads": [],
- "name": "stackforge/climate"
- },
- {
- "heads": [],
- "name": "openstack/python-swiftclient"
- },
- {
- "heads": [],
- "name": "openstack/python-ceilometerclient"
- },
- {
- "heads": [],
- "name": "openstack-infra/git-review"
- },
- {
- "heads": [],
- "name": "stackforge/bufunfa"
- },
- {
- "heads": [],
- "name": "stackforge/puppet-swift"
- },
- {
- "heads": [],
- "name": "openstack-infra/statusbot"
- },
- {
- "heads": [],
- "name": "openstack/openstack-planet"
- },
- {
- "heads": [],
- "name": "openstack/python-openstackclient"
- },
- {
- "heads": [],
- "name": "stackforge/diskimage-builder"
- },
- {
- "heads": [],
- "name": "openstack-infra/gerritlib"
- },
- {
- "heads": [],
- "name": "openstack-infra/zuul"
- },
- {
- "heads": [],
- "name": "stackforge/reddwarf"
- },
- {
- "heads": [],
- "name": "openstack-dev/hacking"
- },
- {
- "heads": [],
- "name": "openstack/python-heatclient"
- },
- {
- "heads": [],
- "name": "stackforge/python-libraclient"
- },
- {
- "heads": [],
- "name": "openstack-infra/reviewday"
- },
- {
- "heads": [],
- "name": "openstack-infra/jeepyb"
- },
- {
- "heads": [],
- "name": "openstack/heat"
- },
- {
- "heads": [],
- "name": "stackforge/libra"
- },
- {
- "heads": [],
- "name": "openstack-infra/gerrit"
- },
- {
- "heads": [],
- "name": "stackforge/healthnmon"
- },
- {
- "heads": [],
- "name": "openstack-infra/gerritbot"
- },
- {
- "heads": [],
- "name": "openstack-dev/pbr"
- },
- {
- "heads": [],
- "name": "stackforge/savanna"
- },
- {
- "heads": [],
- "name": "openstack/openstack-manuals"
- }
- ],
- "name": "gate"
- },
- {
- "description": "This pipeline runs jobs that operate after each change is merged.",
- "change_queues": [
- {
- "heads": [],
- "name": "openstack-dev/hacking, openstack-dev/openstack-qa, openstack-dev/pbr, openstack-infra/config, openstack-infra/gearman-plugin, openstack-infra/gerrit, openstack-infra/gerritbot, openstack-infra/git-review, openstack-infra/jenkins-job-builder, openstack-infra/nose-html-output, openstack-infra/reviewday, openstack-infra/statusbot, openstack-infra/zuul, openstack/api-site, openstack/ceilometer, openstack/cinder, openstack/compute-api, openstack/glance, openstack/heat, openstack/heat-cfntools, openstack/horizon, openstack/identity-api, openstack/image-api, openstack/keystone, openstack/netconn-api, openstack/nova, openstack/object-api, openstack/openstack-manuals, openstack/oslo-incubator, openstack/oslo.config, openstack/python-ceilometerclient, openstack/python-cinderclient, openstack/python-glanceclient, openstack/python-heatclient, openstack/python-keystoneclient, openstack/python-novaclient, openstack/python-openstackclient, openstack/python-quantumclient, openstack/python-swiftclient, openstack/quantum, openstack/requirements, openstack/swift, openstack/volume-api, stackforge/bufunfa, stackforge/diskimage-builder, stackforge/moniker, stackforge/os-config-applier, stackforge/python-monikerclient, stackforge/python-savannaclient, stackforge/reddwarf, stackforge/savanna, stackforge/tripleo-image-elements"
- }
- ],
- "name": "post"
- },
- {
- "description": "This pipeline runs jobs on projects in response to pre-release tags.",
- "change_queues": [
- {
- "heads": [],
- "name": "openstack-dev/hacking, openstack-dev/pbr, openstack-infra/gerritbot, openstack-infra/gerritlib, openstack-infra/git-review, openstack-infra/jeepyb, openstack-infra/jenkins-job-builder, openstack-infra/nose-html-output, openstack-infra/reviewday, openstack-infra/statusbot, openstack-infra/zuul, openstack/ceilometer, openstack/cinder, openstack/glance, openstack/heat, openstack/heat-cfntools, openstack/horizon, openstack/keystone, openstack/nova, openstack/oslo.config, openstack/python-ceilometerclient, openstack/python-cinderclient, openstack/python-glanceclient, openstack/python-heatclient, openstack/python-keystoneclient, openstack/python-novaclient, openstack/python-openstackclient, openstack/python-quantumclient, openstack/python-swiftclient, openstack/quantum, openstack/swift, stackforge/moniker, stackforge/python-monikerclient, stackforge/python-reddwarfclient, stackforge/python-savannaclient, stackforge/savanna"
- }
- ],
- "name": "pre-release"
- },
- {
- "description": "When a commit is tagged as a release, this pipeline runs jobs that publish archives and documentation.",
- "change_queues": [
- {
- "heads": [],
- "name": "openstack-dev/hacking, openstack-dev/openstack-qa, openstack-dev/pbr, openstack-infra/gerritbot, openstack-infra/gerritlib, openstack-infra/git-review, openstack-infra/jeepyb, openstack-infra/jenkins-job-builder, openstack-infra/nose-html-output, openstack-infra/reviewday, openstack-infra/statusbot, openstack-infra/zuul, openstack/ceilometer, openstack/cinder, openstack/glance, openstack/heat, openstack/heat-cfntools, openstack/horizon, openstack/keystone, openstack/nova, openstack/oslo-incubator, openstack/oslo.config, openstack/python-ceilometerclient, openstack/python-cinderclient, openstack/python-glanceclient, openstack/python-heatclient, openstack/python-keystoneclient, openstack/python-novaclient, openstack/python-openstackclient, openstack/python-quantumclient, openstack/python-swiftclient, openstack/quantum, openstack/swift, stackforge/moniker, stackforge/python-monikerclient, stackforge/python-reddwarfclient, stackforge/python-savannaclient, stackforge/savanna"
- }
- ],
- "name": "release"
- },
- {
- "description": "This pipeline is used for silently testing new jobs.",
- "change_queues": [
- {
- "heads": [],
- "name": ""
- }
- ],
- "name": "silent"
- }
- ],
- "trigger_event_queue": {
- "length": 0
- },
- "result_event_queue": {
- "length": 0
- },
- "zuul_version": "2.0.0.19"
-}
diff --git a/etc/status/public_html/status-tree.json-sample b/etc/status/public_html/status-tree.json-sample
deleted file mode 100644
index 31a37c8aa..000000000
--- a/etc/status/public_html/status-tree.json-sample
+++ /dev/null
@@ -1 +0,0 @@
-{"pipelines": [{"description": "Newly uploaded patchsets enter this pipeline to receive an initial +/-1 Verified vote from Jenkins.", "change_queues": [{"heads": [[{"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 271291, "name": "gate-nova-pep8", "url": "https://jenkins02.openstack.org/job/gate-nova-pep8/4691/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 229630, "name": "gate-nova-docs", "url": "https://jenkins02.openstack.org/job/gate-nova-docs/4628/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1136580, "name": "gate-nova-python26", "url": "https://jenkins01.openstack.org/job/gate-nova-python26/5766/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 686242, "name": "gate-nova-python27", "url": "https://jenkins02.openstack.org/job/gate-nova-python27/5832/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 2119040, "name": "check-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-full/5/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 2120037, "name": "check-tempest-devstack-vm-postgres-full", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-postgres-full/4/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 1621689, "name": "check-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-neutron/5/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1044129, "name": "check-tempest-devstack-vm-large-ops", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-large-ops/1/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 1977057, "name": "check-grenade-devstack-vm", "url": "https://jenkins01.openstack.org/job/check-grenade-devstack-vm/4/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 678310, "name": "gate-nova-pylint", "url": "https://jenkins01.openstack.org/job/gate-nova-pylint/3023/", "voting": false, "remaining_time": 0, "result": "SUCCESS"}], "url": "https://review.openstack.org/48721", "item_ahead": null, "enqueue_time": 1380308488015, "project": "openstack/nova", "remaining_time": 0, "id": "48721,1"}], [{"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 582992, "name": "gate-requirements-install", "url": "https://jenkins02.openstack.org/job/gate-requirements-install/225/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 23168, "name": "gate-requirements-pep8", "url": "https://jenkins01.openstack.org/job/gate-requirements-pep8/268/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 109904, "name": "gate-requirements-python27", "url": "https://jenkins01.openstack.org/job/gate-requirements-python27/273/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 190547, "name": "gate-requirements-pypy", "url": "https://jenkins01.openstack.org/job/gate-requirements-pypy/54/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 2120035, "name": "check-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-full/4/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 2127801, "name": "check-tempest-devstack-vm-postgres-full", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-postgres-full/1/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 2113881, "name": "check-tempest-devstack-vm-neutron", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-neutron/1/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 1005847, "name": "check-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-large-ops/1/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 1885169, "name": "check-grenade-devstack-vm", "url": "https://jenkins01.openstack.org/job/check-grenade-devstack-vm/2/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 854611, "name": "check-swift-devstack-vm-functional", "url": "https://jenkins02.openstack.org/job/check-swift-devstack-vm-functional/1/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}], "url": "https://review.openstack.org/48722", "item_ahead": null, "enqueue_time": 1380308971613, "project": "openstack/requirements", "remaining_time": 0, "id": "48722,1"}], [{"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 133600, "name": "gate-neutron-pep8", "url": "https://jenkins02.openstack.org/job/gate-neutron-pep8/1416/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 131277, "name": "gate-neutron-docs", "url": "https://jenkins02.openstack.org/job/gate-neutron-docs/1467/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 2251822, "name": "gate-neutron-python26", "url": "https://jenkins01.openstack.org/job/gate-neutron-python26/1771/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 1452497, "name": "gate-neutron-python27", "url": "https://jenkins02.openstack.org/job/gate-neutron-python27/1678/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 2124032, "name": "check-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-neutron/1/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 1945001, "name": "check-tempest-devstack-vm-neutron-pg", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-neutron-pg/1/", "voting": false, "remaining_time": 0, "result": "FAILURE"}], "url": "https://review.openstack.org/45677", "item_ahead": null, "enqueue_time": 1380308990019, "project": "openstack/neutron", "remaining_time": 0, "id": "45677,4"}], [{"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 94738, "name": "gate-tempest-pep8", "url": "https://jenkins01.openstack.org/job/gate-tempest-pep8/1576/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 208144, "name": "gate-tempest-docs", "url": "https://jenkins01.openstack.org/job/gate-tempest-docs/1492/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 2126572, "name": "check-tempest-devstack-vm-full", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-full/1/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 2119030, "name": "check-tempest-devstack-vm-postgres-full", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-postgres-full/5/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 1622822, "name": "check-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-neutron/3/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 989220, "name": "check-tempest-devstack-vm-large-ops", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-large-ops/3/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 2119038, "name": "check-grenade-devstack-vm", "url": "https://jenkins01.openstack.org/job/check-grenade-devstack-vm/3/", "voting": true, "remaining_time": 0, "result": null}], "url": "https://review.openstack.org/48147", "item_ahead": null, "enqueue_time": 1380309029918, "project": "openstack/tempest", "remaining_time": 0, "id": "48147,8"}], [{"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 105321, "name": "gate-heat-pep8", "url": "https://jenkins02.openstack.org/job/gate-heat-pep8/1627/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 120878, "name": "gate-heat-docs", "url": "https://jenkins01.openstack.org/job/gate-heat-docs/1411/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 137196, "name": "gate-heat-python26", "url": "https://jenkins02.openstack.org/job/gate-heat-python26/1658/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 105580, "name": "gate-heat-python27", "url": "https://jenkins01.openstack.org/job/gate-heat-python27/1951/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 2126107, "name": "check-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-full/2/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 2070327, "name": "check-tempest-devstack-vm-postgres-full", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-postgres-full/2/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1688657, "name": "check-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-neutron/4/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 973734, "name": "check-tempest-devstack-vm-large-ops", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-large-ops/2/", "voting": true, "remaining_time": 0, "result": "FAILURE"}], "url": "https://review.openstack.org/48727", "item_ahead": null, "enqueue_time": 1380309606606, "project": "openstack/heat", "remaining_time": 0, "id": "48727,1"}], [{"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 259891, "name": "gate-nova-pep8", "url": "https://jenkins01.openstack.org/job/gate-nova-pep8/6686/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 179999, "name": "gate-nova-docs", "url": "https://jenkins01.openstack.org/job/gate-nova-docs/6789/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1102654, "name": "gate-nova-python26", "url": "https://jenkins01.openstack.org/job/gate-nova-python26/5777/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 818856, "name": "gate-nova-python27", "url": "https://jenkins01.openstack.org/job/gate-nova-python27/5498/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 2127117, "name": "check-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-full/1/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 2070550, "name": "check-tempest-devstack-vm-postgres-full", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-postgres-full/1/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1674929, "name": "check-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-neutron/2/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 1066930, "name": "check-tempest-devstack-vm-large-ops", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-large-ops/4/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 2101177, "name": "check-grenade-devstack-vm", "url": "https://jenkins01.openstack.org/job/check-grenade-devstack-vm/1/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 682941, "name": "gate-nova-pylint", "url": "https://jenkins02.openstack.org/job/gate-nova-pylint/2934/", "voting": false, "remaining_time": 0, "result": "SUCCESS"}], "url": "https://review.openstack.org/42736", "item_ahead": null, "enqueue_time": 1380309629537, "project": "openstack/nova", "remaining_time": 0, "id": "42736,16"}], [{"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 169641, "name": "gate-cinder-pep8", "url": "https://jenkins01.openstack.org/job/gate-cinder-pep8/1643/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 527224, "name": "gate-cinder-docs", "url": "https://jenkins02.openstack.org/job/gate-cinder-docs/1120/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 354497, "name": "gate-cinder-python26", "url": "https://jenkins02.openstack.org/job/gate-cinder-python26/1316/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 265127, "name": "gate-cinder-python27", "url": "https://jenkins01.openstack.org/job/gate-cinder-python27/1468/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 291907, "name": "gate-cinder-pylint", "url": "https://jenkins01.openstack.org/job/gate-cinder-pylint/843/", "voting": false, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 2121705, "name": "check-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-full/3/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 2124111, "name": "check-tempest-devstack-vm-postgres-full", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-postgres-full/3/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 2107674, "name": "check-tempest-devstack-vm-neutron", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-neutron/3/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 1132023, "name": "check-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-large-ops/3/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 1953058, "name": "check-grenade-devstack-vm", "url": "https://jenkins02.openstack.org/job/check-grenade-devstack-vm/2/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}], "url": "https://review.openstack.org/48387", "item_ahead": null, "enqueue_time": 1380309658104, "project": "openstack/cinder", "remaining_time": 0, "id": "48387,2"}], [{"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 2124616, "name": "check-tempest-devstack-vm-full", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-full/2/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 2124614, "name": "check-tempest-devstack-vm-postgres-full", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-postgres-full/2/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 2092452, "name": "check-tempest-devstack-vm-neutron", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-neutron/4/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 1016557, "name": "check-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-large-ops/2/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 1962618, "name": "check-grenade-devstack-vm", "url": "https://jenkins02.openstack.org/job/check-grenade-devstack-vm/1/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 843816, "name": "check-swift-devstack-vm-functional", "url": "https://jenkins02.openstack.org/job/check-swift-devstack-vm-functional/2/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}], "url": "https://review.openstack.org/48411", "item_ahead": null, "enqueue_time": 1380309825203, "project": "openstack-dev/devstack", "remaining_time": 0, "id": "48411,2"}], [{"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 129512, "name": "gate-heat-pep8", "url": "https://jenkins01.openstack.org/job/gate-heat-pep8/2137/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 121344, "name": "gate-heat-docs", "url": "https://jenkins01.openstack.org/job/gate-heat-docs/1412/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 139891, "name": "gate-heat-python26", "url": "https://jenkins01.openstack.org/job/gate-heat-python26/1887/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 99492, "name": "gate-heat-python27", "url": "https://jenkins02.openstack.org/job/gate-heat-python27/1796/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 2120214, "name": "check-tempest-devstack-vm-full", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-full/5/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 2121195, "name": "check-tempest-devstack-vm-postgres-full", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-postgres-full/3/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 2119197, "name": "check-tempest-devstack-vm-neutron", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-neutron/6/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 1172776, "name": "check-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-large-ops/4/", "voting": true, "remaining_time": 0, "result": "FAILURE"}], "url": "https://review.openstack.org/48730", "item_ahead": null, "enqueue_time": 1380309894142, "project": "openstack/heat", "remaining_time": 0, "id": "48730,1"}], [{"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 228482, "name": "gate-nova-pep8", "url": "https://jenkins01.openstack.org/job/gate-nova-pep8/6687/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 261211, "name": "gate-nova-docs", "url": "https://jenkins02.openstack.org/job/gate-nova-docs/4642/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 871252, "name": "gate-nova-python26", "url": "https://jenkins01.openstack.org/job/gate-nova-python26/5778/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 808633, "name": "gate-nova-python27", "url": "https://jenkins01.openstack.org/job/gate-nova-python27/5499/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 2121220, "name": "check-tempest-devstack-vm-full", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-full/4/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 2035444, "name": "check-tempest-devstack-vm-postgres-full", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-postgres-full/5/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 2089448, "name": "check-tempest-devstack-vm-neutron", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-neutron/7/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 790327, "name": "check-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-large-ops/6/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1747827, "name": "check-grenade-devstack-vm", "url": "https://jenkins02.openstack.org/job/check-grenade-devstack-vm/4/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 887417, "name": "gate-nova-pylint", "url": "https://jenkins01.openstack.org/job/gate-nova-pylint/3024/", "voting": false, "remaining_time": 0, "result": "SUCCESS"}], "url": "https://review.openstack.org/48666", "item_ahead": null, "enqueue_time": 1380310094572, "project": "openstack/nova", "remaining_time": 0, "id": "48666,1"}], [{"failing_reasons": [], "items_behind": [], "jobs": [{"elapsed_time": 53467, "name": "gate-python-keystoneclient-pep8", "url": "https://jenkins01.openstack.org/job/gate-python-keystoneclient-pep8/391/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 59025, "name": "gate-python-keystoneclient-docs", "url": "https://jenkins01.openstack.org/job/gate-python-keystoneclient-docs/388/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 53179, "name": "gate-python-keystoneclient-python26", "url": "https://jenkins02.openstack.org/job/gate-python-keystoneclient-python26/334/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 49841, "name": "gate-python-keystoneclient-python27", "url": "https://jenkins02.openstack.org/job/gate-python-keystoneclient-python27/325/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 19429, "name": "gate-python-keystoneclient-python33", "url": "https://jenkins01.openstack.org/job/gate-python-keystoneclient-python33/242/", "voting": false, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 98806, "name": "check-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-full/6/", "voting": true, "remaining_time": 2016562, "result": null}, {"elapsed_time": 97555, "name": "check-tempest-devstack-vm-postgres-full", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-postgres-full/6/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 97553, "name": "check-tempest-devstack-vm-neutron", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-neutron/10/", "voting": true, "remaining_time": 1828676, "result": null}, {"elapsed_time": 97548, "name": "check-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-large-ops/7/", "voting": true, "remaining_time": 691118, "result": null}, {"elapsed_time": 98513, "name": "check-grenade-devstack-vm", "url": "https://jenkins01.openstack.org/job/check-grenade-devstack-vm/5/", "voting": true, "remaining_time": 1886679, "result": null}], "url": "https://review.openstack.org/40703", "item_ahead": null, "enqueue_time": 1380314139375, "project": "openstack/python-keystoneclient", "remaining_time": 2016562, "id": "40703,7"}], [{"failing_reasons": [], "items_behind": [], "jobs": [{"elapsed_time": 45817, "name": "gate-heat-pep8", "url": "https://jenkins01.openstack.org/job/gate-heat-pep8/2171/", "voting": true, "remaining_time": 48324, "result": null}, {"elapsed_time": 45858, "name": "gate-heat-docs", "url": "https://jenkins01.openstack.org/job/gate-heat-docs/1446/", "voting": true, "remaining_time": 94144, "result": null}, {"elapsed_time": 45815, "name": "gate-heat-python26", "url": "https://jenkins01.openstack.org/job/gate-heat-python26/1924/", "voting": true, "remaining_time": 99244, "result": null}, {"elapsed_time": 45813, "name": "gate-heat-python27", "url": "https://jenkins01.openstack.org/job/gate-heat-python27/1989/", "voting": true, "remaining_time": 72904, "result": null}, {"elapsed_time": 45793, "name": "check-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-full/7/", "voting": true, "remaining_time": 2069575, "result": null}, {"elapsed_time": 45795, "name": "check-tempest-devstack-vm-postgres-full", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-postgres-full/6/", "voting": true, "remaining_time": 2022237, "result": null}, {"elapsed_time": 45749, "name": "check-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-neutron/7/", "voting": true, "remaining_time": 1588997, "result": null}, {"elapsed_time": 45594, "name": "check-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-large-ops/8/", "voting": true, "remaining_time": 743072, "result": null}], "url": "https://review.openstack.org/44534", "item_ahead": null, "enqueue_time": 1380314190372, "project": "openstack/heat", "remaining_time": 2069575, "id": "44534,9"}], [{"failing_reasons": [], "items_behind": [], "jobs": [{"elapsed_time": 24513, "name": "gate-nova-pep8", "url": "https://jenkins01.openstack.org/job/gate-nova-pep8/6722/", "voting": true, "remaining_time": 221251, "result": null}, {"elapsed_time": 24476, "name": "gate-nova-docs", "url": "https://jenkins01.openstack.org/job/gate-nova-docs/6823/", "voting": true, "remaining_time": 213900, "result": null}, {"elapsed_time": 24418, "name": "gate-nova-python26", "url": "https://jenkins02.openstack.org/job/gate-nova-python26/5157/", "voting": true, "remaining_time": 1052059, "result": null}, {"elapsed_time": 24471, "name": "gate-nova-python27", "url": "https://jenkins01.openstack.org/job/gate-nova-python27/5532/", "voting": true, "remaining_time": 723110, "result": null}, {"elapsed_time": 24466, "name": "check-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-full/8/", "voting": true, "remaining_time": 2090902, "result": null}, {"elapsed_time": 24412, "name": "check-tempest-devstack-vm-postgres-full", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-postgres-full/7/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 24253, "name": "check-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/check-tempest-devstack-vm-neutron/8/", "voting": true, "remaining_time": 1610493, "result": null}, {"elapsed_time": 24324, "name": "check-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/check-tempest-devstack-vm-large-ops/9/", "voting": true, "remaining_time": 764342, "result": null}, {"elapsed_time": 24104, "name": "check-grenade-devstack-vm", "url": "https://jenkins02.openstack.org/job/check-grenade-devstack-vm/5/", "voting": true, "remaining_time": 1859269, "result": null}, {"elapsed_time": 24294, "name": "gate-nova-pylint", "url": "https://jenkins02.openstack.org/job/gate-nova-pylint/2935/", "voting": false, "remaining_time": 717239, "result": null}], "url": "https://review.openstack.org/48544", "item_ahead": null, "enqueue_time": 1380314204556, "project": "openstack/nova", "remaining_time": 2090902, "id": "48544,2"}], [{"failing_reasons": [], "items_behind": [], "jobs": [{"elapsed_time": 8576, "name": "gate-barbican-pep8", "url": "https://jenkins01.openstack.org/job/gate-barbican-pep8/63/", "voting": true, "remaining_time": 29785, "result": null}, {"elapsed_time": 8575, "name": "gate-barbican-python27", "url": "https://jenkins01.openstack.org/job/gate-barbican-python27/54/", "voting": true, "remaining_time": 79333, "result": null}], "url": "https://review.openstack.org/48734", "item_ahead": null, "enqueue_time": 1380314228789, "project": "stackforge/barbican", "remaining_time": 79333, "id": "48734,1"}], [{"failing_reasons": [], "items_behind": [], "jobs": [{"elapsed_time": 1337, "name": "gate-python-swiftclient-requirements", "url": "https://jenkins02.openstack.org/job/gate-python-swiftclient-requirements/9/", "voting": true, "remaining_time": 3536, "result": null}, {"elapsed_time": 1342, "name": "gate-python-swiftclient-pep8", "url": "https://jenkins02.openstack.org/job/gate-python-swiftclient-pep8/22/", "voting": true, "remaining_time": 31997, "result": null}, {"elapsed_time": 3342, "name": "gate-python-swiftclient-docs", "url": "https://jenkins01.openstack.org/job/gate-python-swiftclient-docs/39/", "voting": true, "remaining_time": 40808, "result": null}, {"elapsed_time": 3338, "name": "gate-python-swiftclient-python26", "url": "https://jenkins01.openstack.org/job/gate-python-swiftclient-python26/34/", "voting": true, "remaining_time": 41947, "result": null}, {"elapsed_time": 3336, "name": "gate-python-swiftclient-python27", "url": "https://jenkins01.openstack.org/job/gate-python-swiftclient-python27/21/", "voting": true, "remaining_time": 33146, "result": null}, {"elapsed_time": 3344, "name": "gate-python-swiftclient-python33", "url": "https://jenkins01.openstack.org/job/gate-python-swiftclient-python33/35/", "voting": false, "remaining_time": 0, "result": null}, {"elapsed_time": 1748, "name": "gate-python-swiftclient-pypy", "url": "https://jenkins01.openstack.org/job/gate-python-swiftclient-pypy/27/", "voting": true, "remaining_time": 82666, "result": null}, {"elapsed_time": 1746, "name": "check-swift-devstack-vm-functional", "url": "https://jenkins01.openstack.org/job/check-swift-devstack-vm-functional/2/", "voting": true, "remaining_time": 0, "result": null}], "url": "https://review.openstack.org/48724", "item_ahead": null, "enqueue_time": 1380314236719, "project": "openstack/python-swiftclient", "remaining_time": 82666, "id": "48724,3"}]], "name": "openstack-dev/cookiecutter, openstack-dev/devstack, openstack-dev/grenade, openstack-dev/hacking, openstack-dev/heat-cfnclient, openstack-dev/openstack-nose, openstack-dev/openstack-qa, openstack-dev/pbr, openstack-dev/sandbox, openstack-infra/activity-board, openstack-infra/askbot-theme, openstack-infra/config, openstack-infra/devstack-gate, openstack-infra/elastic-recheck, openstack-infra/gear, openstack-infra/gearman-plugin, openstack-infra/gerrit, openstack-infra/gerritbot, openstack-infra/gerritlib, openstack-infra/git-review, openstack-infra/gitdm, openstack-infra/groups, openstack-infra/jeepyb, openstack-infra/jenkins-job-builder, openstack-infra/lodgeit, openstack-infra/meetbot, openstack-infra/nodepool, openstack-infra/nose-html-output, openstack-infra/odsreg, openstack-infra/publications, openstack-infra/puppet-apparmor, openstack-infra/puppet-dashboard, openstack-infra/puppet-vcsrepo, openstack-infra/pypi-mirror, openstack-infra/releasestatus, openstack-infra/reviewday, openstack-infra/reviewstats, openstack-infra/statusbot, openstack-infra/storyboard, openstack-infra/tripleo-ci, openstack-infra/zmq-event-publisher, openstack-infra/zuul, openstack/api-site, openstack/ceilometer, openstack/cinder, openstack/compute-api, openstack/database-api, openstack/diskimage-builder, openstack/django_openstack_auth, openstack/glance, openstack/governance, openstack/heat, openstack/heat-cfntools, openstack/heat-templates, openstack/horizon, openstack/identity-api, openstack/image-api, openstack/ironic, openstack/keystone, openstack/marconi, openstack/netconn-api, openstack/neutron, openstack/nova, openstack/object-api, openstack/openstack-chef, openstack/openstack-manuals, openstack/openstack-planet, openstack/operations-guide, openstack/os-apply-config, openstack/os-collect-config, openstack/os-refresh-config, openstack/oslo-incubator, openstack/oslo.config, openstack/oslo.messaging, openstack/oslo.sphinx, openstack/oslo.version, openstack/python-ceilometerclient, openstack/python-cinderclient, openstack/python-glanceclient, openstack/python-heatclient, openstack/python-ironicclient, openstack/python-keystoneclient, openstack/python-marconiclient, openstack/python-neutronclient, openstack/python-novaclient, openstack/python-openstackclient, openstack/python-swiftclient, openstack/python-troveclient, openstack/requirements, openstack/swift, openstack/tempest, openstack/tripleo-heat-templates, openstack/tripleo-image-elements, openstack/tripleo-incubator, openstack/trove, openstack/trove-integration, openstack/volume-api, stackforge/MRaaS, stackforge/anvil, stackforge/barbican, stackforge/billingstack, stackforge/bindep, stackforge/bufunfa, stackforge/cl-openstack-client, stackforge/climate, stackforge/cloudcafe, stackforge/clouddocs-maven-plugin, stackforge/cloudroast, stackforge/cookbook-openstack-block-storage, stackforge/cookbook-openstack-common, stackforge/cookbook-openstack-compute, stackforge/cookbook-openstack-dashboard, stackforge/cookbook-openstack-identity, stackforge/cookbook-openstack-image, stackforge/cookbook-openstack-metering, stackforge/cookbook-openstack-network, stackforge/cookbook-openstack-object-storage, stackforge/cookbook-openstack-ops-database, stackforge/cookbook-openstack-ops-messaging, stackforge/cookbook-openstack-orchestration, stackforge/designate, stackforge/fuel-astute, stackforge/fuel-main, stackforge/fuel-ostf-plugin, stackforge/fuel-ostf-tests, stackforge/fuel-web, stackforge/golang-client, stackforge/healthnmon, stackforge/inception, stackforge/kwapi, stackforge/libra, stackforge/manila, stackforge/murano-agent, stackforge/murano-api, stackforge/murano-common, stackforge/murano-conductor, stackforge/murano-dashboard, stackforge/murano-deployment, stackforge/murano-docs, stackforge/murano-tests, stackforge/novaimagebuilder, stackforge/occi-os, stackforge/opencafe, stackforge/openstack-chef-repo, stackforge/openvz-nova-driver, stackforge/packstack, stackforge/pecan, stackforge/puppet-ceilometer, stackforge/puppet-cinder, stackforge/puppet-glance, stackforge/puppet-heat, stackforge/puppet-horizon, stackforge/puppet-keystone, stackforge/puppet-neutron, stackforge/puppet-nova, stackforge/puppet-openstack, stackforge/puppet-openstack_dev_env, stackforge/puppet-savanna, stackforge/puppet-swift, stackforge/puppet-tempest, stackforge/pycadf, stackforge/pyghmi, stackforge/python-climateclient, stackforge/python-designateclient, stackforge/python-libraclient, stackforge/python-manilaclient, stackforge/python-muranoclient, stackforge/python-savannaclient, stackforge/python-tuskarclient, stackforge/rally, stackforge/savanna, stackforge/savanna-dashboard, stackforge/savanna-extra, stackforge/savanna-image-elements, stackforge/sqlalchemy-migrate, stackforge/staccato, stackforge/stackalytics, stackforge/taskflow, stackforge/tuskar, stackforge/tuskar-ui, stackforge/wsme"}], "name": "check"}, {"description": "Changes that have been approved by core developers are enqueued in order in this pipeline, and if they pass tests in Jenkins, will be merged.", "change_queues": [{"heads": [], "name": "stackforge/puppet-horizon"}, {"heads": [], "name": "openstack-dev/heat-cfnclient"}, {"heads": [[{"failing_reasons": ["at least one job failed"], "items_behind": ["48423,2"], "jobs": [{"elapsed_time": 199240, "name": "gate-ceilometer-docs", "url": "https://jenkins01.openstack.org/job/gate-ceilometer-docs/1113/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 88267, "name": "gate-ceilometer-pep8", "url": "https://jenkins01.openstack.org/job/gate-ceilometer-pep8/1146/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 621409, "name": "gate-ceilometer-python26", "url": "https://jenkins02.openstack.org/job/gate-ceilometer-python26/1014/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 11124, "name": "gate-ceilometer-python27", "url": "https://jenkins02.openstack.org/job/gate-ceilometer-python27/1003/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 1585675, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-full/14925/", "voting": true, "remaining_time": 340565, "result": null}, {"elapsed_time": 1582866, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14693/", "voting": true, "remaining_time": 138052, "result": null}, {"elapsed_time": 1155105, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-neutron/16378/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 882181, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-large-ops/4288/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 612572, "name": "gate-swift-devstack-vm-functional", "url": "https://jenkins01.openstack.org/job/gate-swift-devstack-vm-functional/1678/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}], "url": "https://review.openstack.org/48418", "item_ahead": null, "enqueue_time": 1380275100319, "project": "openstack/ceilometer", "remaining_time": 340565, "id": "48418,1"}, {"failing_reasons": ["a needed change is failing", "at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 1581332, "name": "gate-ceilometer-docs", "url": "https://jenkins01.openstack.org/job/gate-ceilometer-docs/1114/", "voting": true, "remaining_time": 0, "result": "CANCELED"}, {"elapsed_time": 78975, "name": "gate-ceilometer-pep8", "url": "https://jenkins02.openstack.org/job/gate-ceilometer-pep8/961/", "voting": true, "remaining_time": 0, "result": "CANCELED"}, {"elapsed_time": 1581499, "name": "gate-ceilometer-python26", "url": "https://jenkins02.openstack.org/job/gate-ceilometer-python26/1015/", "voting": true, "remaining_time": 0, "result": "CANCELED"}, {"elapsed_time": 1581346, "name": "gate-ceilometer-python27", "url": "https://jenkins01.openstack.org/job/gate-ceilometer-python27/1099/", "voting": true, "remaining_time": 0, "result": "CANCELED"}, {"elapsed_time": 1524357, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-full/15590/", "voting": true, "remaining_time": 264284, "result": "CANCELED"}, {"elapsed_time": 1522887, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14951/", "voting": true, "remaining_time": 281026, "result": "CANCELED"}, {"elapsed_time": 1512715, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-neutron/16379/", "voting": true, "remaining_time": 0, "result": "CANCELED"}, {"elapsed_time": 1501341, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-large-ops/4047/", "voting": true, "remaining_time": 0, "result": "CANCELED"}, {"elapsed_time": 1486370, "name": "gate-swift-devstack-vm-functional", "url": "https://jenkins01.openstack.org/job/gate-swift-devstack-vm-functional/1679/", "voting": true, "remaining_time": 0, "result": "CANCELED"}], "url": "https://review.openstack.org/48423", "item_ahead": "48418,1", "enqueue_time": 1380275122088, "project": "openstack/ceilometer", "remaining_time": 340565, "id": "48423,2"}], [{"failing_reasons": [], "items_behind": ["48385,1"], "jobs": [{"elapsed_time": 84934, "name": "gate-tempest-pep8", "url": "https://jenkins02.openstack.org/job/gate-tempest-pep8/1189/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 214743, "name": "gate-tempest-docs", "url": "https://jenkins01.openstack.org/job/gate-tempest-docs/1514/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1399439, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-full/15592/", "voting": true, "remaining_time": 384946, "result": null}, {"elapsed_time": 1391747, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14953/", "voting": true, "remaining_time": 521249, "result": null}, {"elapsed_time": 1387288, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-neutron/16381/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 805938, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-large-ops/4289/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1326300, "name": "gate-grenade-devstack-vm", "url": "https://jenkins02.openstack.org/job/gate-grenade-devstack-vm/12622/", "voting": true, "remaining_time": 328649, "result": null}], "url": "https://review.openstack.org/48271", "item_ahead": null, "enqueue_time": 1380276878515, "project": "openstack/tempest", "remaining_time": 521249, "id": "48271,1"}, {"failing_reasons": [], "items_behind": ["48240,1"], "jobs": [{"elapsed_time": 266700, "name": "gate-nova-docs", "url": "https://jenkins01.openstack.org/job/gate-nova-docs/6815/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 288292, "name": "gate-nova-pep8", "url": "https://jenkins01.openstack.org/job/gate-nova-pep8/6716/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1053388, "name": "gate-nova-python26", "url": "https://jenkins01.openstack.org/job/gate-nova-python26/5799/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 806482, "name": "gate-nova-python27", "url": "https://jenkins01.openstack.org/job/gate-nova-python27/5525/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1297198, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-full/14927/", "voting": true, "remaining_time": 629042, "result": null}, {"elapsed_time": 1288003, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14954/", "voting": true, "remaining_time": 624993, "result": null}, {"elapsed_time": 1255139, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-neutron/16430/", "voting": true, "remaining_time": 59370, "result": null}, {"elapsed_time": 652956, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-large-ops/4049/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1207574, "name": "gate-grenade-devstack-vm", "url": "https://jenkins02.openstack.org/job/gate-grenade-devstack-vm/12623/", "voting": true, "remaining_time": 447375, "result": null}], "url": "https://review.openstack.org/48385", "item_ahead": "48271,1", "enqueue_time": 1380282964803, "project": "openstack/nova", "remaining_time": 629042, "id": "48385,1"}, {"failing_reasons": [], "items_behind": ["48242,1"], "jobs": [{"elapsed_time": 109796, "name": "gate-heat-pep8", "url": "https://jenkins01.openstack.org/job/gate-heat-pep8/2164/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 104030, "name": "gate-heat-docs", "url": "https://jenkins01.openstack.org/job/gate-heat-docs/1439/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 141262, "name": "gate-heat-python26", "url": "https://jenkins01.openstack.org/job/gate-heat-python26/1917/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 113583, "name": "gate-heat-python27", "url": "https://jenkins01.openstack.org/job/gate-heat-python27/1981/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1205403, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-full/14928/", "voting": true, "remaining_time": 720837, "result": null}, {"elapsed_time": 1166515, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14955/", "voting": true, "remaining_time": 746481, "result": null}, {"elapsed_time": 1161162, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-neutron/16382/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 673234, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-large-ops/4050/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}], "url": "https://review.openstack.org/48240", "item_ahead": "48385,1", "enqueue_time": 1380283569407, "project": "openstack/heat", "remaining_time": 746481, "id": "48240,1"}, {"failing_reasons": [], "items_behind": ["48243,1"], "jobs": [{"elapsed_time": 118066, "name": "gate-heat-pep8", "url": "https://jenkins01.openstack.org/job/gate-heat-pep8/2165/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 138169, "name": "gate-heat-docs", "url": "https://jenkins01.openstack.org/job/gate-heat-docs/1440/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 135068, "name": "gate-heat-python26", "url": "https://jenkins01.openstack.org/job/gate-heat-python26/1918/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 115149, "name": "gate-heat-python27", "url": "https://jenkins01.openstack.org/job/gate-heat-python27/1982/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1119221, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-full/14929/", "voting": true, "remaining_time": 807019, "result": null}, {"elapsed_time": 1107201, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14956/", "voting": true, "remaining_time": 805795, "result": null}, {"elapsed_time": 1094770, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-neutron/16383/", "voting": true, "remaining_time": 45791, "result": null}, {"elapsed_time": 654451, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-large-ops/4051/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}], "url": "https://review.openstack.org/48242", "item_ahead": "48240,1", "enqueue_time": 1380283569962, "project": "openstack/heat", "remaining_time": 807019, "id": "48242,1"}, {"failing_reasons": [], "items_behind": ["47860,4"], "jobs": [{"elapsed_time": 115274, "name": "gate-heat-pep8", "url": "https://jenkins02.openstack.org/job/gate-heat-pep8/1663/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 221959, "name": "gate-heat-docs", "url": "https://jenkins02.openstack.org/job/gate-heat-docs/1274/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 170541, "name": "gate-heat-python26", "url": "https://jenkins02.openstack.org/job/gate-heat-python26/1675/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 128771, "name": "gate-heat-python27", "url": "https://jenkins01.openstack.org/job/gate-heat-python27/1983/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1080686, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-full/14930/", "voting": true, "remaining_time": 845554, "result": null}, {"elapsed_time": 1070273, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14694/", "voting": true, "remaining_time": 650645, "result": null}, {"elapsed_time": 1065343, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-neutron/16384/", "voting": true, "remaining_time": 75218, "result": null}, {"elapsed_time": 672944, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-large-ops/4290/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}], "url": "https://review.openstack.org/48243", "item_ahead": "48242,1", "enqueue_time": 1380283570607, "project": "openstack/heat", "remaining_time": 845554, "id": "48243,1"}, {"failing_reasons": [], "items_behind": ["48155,3"], "jobs": [{"elapsed_time": 98153, "name": "gate-heat-pep8", "url": "https://jenkins02.openstack.org/job/gate-heat-pep8/1664/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 253092, "name": "gate-heat-docs", "url": "https://jenkins02.openstack.org/job/gate-heat-docs/1275/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 142179, "name": "gate-heat-python26", "url": "https://jenkins01.openstack.org/job/gate-heat-python26/1919/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 138551, "name": "gate-heat-python27", "url": "https://jenkins01.openstack.org/job/gate-heat-python27/1984/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1044832, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-full/15593/", "voting": true, "remaining_time": 739553, "result": null}, {"elapsed_time": 1032808, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14957/", "voting": true, "remaining_time": 880188, "result": null}, {"elapsed_time": 1030352, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-neutron/16385/", "voting": true, "remaining_time": 110209, "result": null}, {"elapsed_time": 661805, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-large-ops/4291/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}], "url": "https://review.openstack.org/47860", "item_ahead": "48243,1", "enqueue_time": 1380283597382, "project": "openstack/heat", "remaining_time": 880188, "id": "47860,4"}, {"failing_reasons": [], "items_behind": ["48591,1", "48111,7"], "jobs": [{"elapsed_time": 143371, "name": "gate-heat-pep8", "url": "https://jenkins02.openstack.org/job/gate-heat-pep8/1665/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 159850, "name": "gate-heat-docs", "url": "https://jenkins01.openstack.org/job/gate-heat-docs/1441/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 153069, "name": "gate-heat-python26", "url": "https://jenkins01.openstack.org/job/gate-heat-python26/1920/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 104530, "name": "gate-heat-python27", "url": "https://jenkins01.openstack.org/job/gate-heat-python27/1985/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 999795, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-full/15594/", "voting": true, "remaining_time": 784590, "result": null}, {"elapsed_time": 998656, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14958/", "voting": true, "remaining_time": 914340, "result": null}, {"elapsed_time": 988798, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-neutron/16431/", "voting": true, "remaining_time": 325711, "result": null}, {"elapsed_time": 682055, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-large-ops/4052/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}], "url": "https://review.openstack.org/48155", "item_ahead": "47860,4", "enqueue_time": 1380284449273, "project": "openstack/heat", "remaining_time": 914340, "id": "48155,3"}, {"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 108212, "name": "gate-neutron-docs", "url": "https://jenkins01.openstack.org/job/gate-neutron-docs/2037/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 137419, "name": "gate-neutron-pep8", "url": "https://jenkins01.openstack.org/job/gate-neutron-pep8/2074/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1361580, "name": "gate-neutron-python26", "url": "https://jenkins02.openstack.org/job/gate-neutron-python26/1628/", "voting": true, "remaining_time": 780221, "result": null}, {"elapsed_time": 22586, "name": "gate-neutron-python27", "url": "https://jenkins02.openstack.org/job/gate-neutron-python27/1689/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 963152, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-neutron/16432/", "voting": true, "remaining_time": 351357, "result": null}], "url": "https://review.openstack.org/48591", "item_ahead": "48155,3", "enqueue_time": 1380287876076, "project": "openstack/neutron", "remaining_time": 914340, "id": "48591,1"}, {"failing_reasons": [], "items_behind": ["46123,21"], "jobs": [{"elapsed_time": 79014, "name": "gate-keystone-docs", "url": "https://jenkins01.openstack.org/job/gate-keystone-docs/1206/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 75321, "name": "gate-keystone-pep8", "url": "https://jenkins02.openstack.org/job/gate-keystone-pep8/998/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1055592, "name": "gate-keystone-python26", "url": "https://jenkins02.openstack.org/job/gate-keystone-python26/1057/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 846093, "name": "gate-keystone-python27", "url": "https://jenkins01.openstack.org/job/gate-keystone-python27/1103/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 960841, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-full/15595/", "voting": true, "remaining_time": 823544, "result": null}, {"elapsed_time": 950223, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14695/", "voting": true, "remaining_time": 770695, "result": null}, {"elapsed_time": 938442, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-neutron/16433/", "voting": true, "remaining_time": 376067, "result": null}, {"elapsed_time": 762279, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-large-ops/4292/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 914795, "name": "gate-grenade-devstack-vm", "url": "https://jenkins01.openstack.org/job/gate-grenade-devstack-vm/12022/", "voting": true, "remaining_time": 741441, "result": null}, {"elapsed_time": 795754, "name": "gate-swift-devstack-vm-functional", "url": "https://jenkins02.openstack.org/job/gate-swift-devstack-vm-functional/1792/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}], "url": "https://review.openstack.org/48111", "item_ahead": "48155,3", "enqueue_time": 1380288460992, "project": "openstack/keystone", "remaining_time": 914340, "id": "48111,7"}, {"failing_reasons": [], "items_behind": ["48168,4"], "jobs": [{"elapsed_time": 86559, "name": "gate-keystone-docs", "url": "https://jenkins01.openstack.org/job/gate-keystone-docs/1207/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 90221, "name": "gate-keystone-pep8", "url": "https://jenkins02.openstack.org/job/gate-keystone-pep8/999/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1171771, "name": "gate-keystone-python26", "url": "https://jenkins01.openstack.org/job/gate-keystone-python26/1058/", "voting": true, "remaining_time": 124855, "result": null}, {"elapsed_time": 859978, "name": "gate-keystone-python27", "url": "https://jenkins01.openstack.org/job/gate-keystone-python27/1104/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 899159, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-full/15596/", "voting": true, "remaining_time": 885226, "result": null}, {"elapsed_time": 883709, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14959/", "voting": true, "remaining_time": 1029287, "result": null}, {"elapsed_time": 848838, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-neutron/16434/", "voting": true, "remaining_time": 465671, "result": null}, {"elapsed_time": 651313, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-large-ops/4053/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 829582, "name": "gate-grenade-devstack-vm", "url": "https://jenkins02.openstack.org/job/gate-grenade-devstack-vm/12624/", "voting": true, "remaining_time": 825367, "result": null}, {"elapsed_time": 742887, "name": "gate-swift-devstack-vm-functional", "url": "https://jenkins02.openstack.org/job/gate-swift-devstack-vm-functional/1793/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}], "url": "https://review.openstack.org/46123", "item_ahead": "48111,7", "enqueue_time": 1380288462307, "project": "openstack/keystone", "remaining_time": 1029287, "id": "46123,21"}, {"failing_reasons": [], "items_behind": ["47546,2"], "jobs": [{"elapsed_time": 87433, "name": "gate-tempest-pep8", "url": "https://jenkins02.openstack.org/job/gate-tempest-pep8/1193/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 221562, "name": "gate-tempest-docs", "url": "https://jenkins01.openstack.org/job/gate-tempest-docs/1516/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 802529, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-full/15597/", "voting": true, "remaining_time": 981856, "result": null}, {"elapsed_time": 788099, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14696/", "voting": true, "remaining_time": 932819, "result": null}, {"elapsed_time": 774143, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-neutron/16386/", "voting": true, "remaining_time": 366418, "result": null}, {"elapsed_time": 683464, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-large-ops/4293/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 757249, "name": "gate-grenade-devstack-vm", "url": "https://jenkins02.openstack.org/job/gate-grenade-devstack-vm/12625/", "voting": true, "remaining_time": 897700, "result": null}], "url": "https://review.openstack.org/48168", "item_ahead": "46123,21", "enqueue_time": 1380288896067, "project": "openstack/tempest", "remaining_time": 1029287, "id": "48168,4"}, {"failing_reasons": [], "items_behind": ["48534,1"], "jobs": [{"elapsed_time": 241419, "name": "gate-nova-docs", "url": "https://jenkins01.openstack.org/job/gate-nova-docs/6816/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 269854, "name": "gate-nova-pep8", "url": "https://jenkins01.openstack.org/job/gate-nova-pep8/6718/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1040776, "name": "gate-nova-python26", "url": "https://jenkins02.openstack.org/job/gate-nova-python26/5151/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 850596, "name": "gate-nova-python27", "url": "https://jenkins02.openstack.org/job/gate-nova-python27/5870/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 745448, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-full/15598/", "voting": true, "remaining_time": 1038937, "result": null}, {"elapsed_time": 720692, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14960/", "voting": true, "remaining_time": 1192304, "result": null}, {"elapsed_time": 715260, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-neutron/16387/", "voting": true, "remaining_time": 425301, "result": null}, {"elapsed_time": 626189, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-large-ops/4054/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 684699, "name": "gate-grenade-devstack-vm", "url": "https://jenkins02.openstack.org/job/gate-grenade-devstack-vm/12626/", "voting": true, "remaining_time": 970250, "result": null}], "url": "https://review.openstack.org/47546", "item_ahead": "48168,4", "enqueue_time": 1380289298528, "project": "openstack/nova", "remaining_time": 1192304, "id": "47546,2"}, {"failing_reasons": [], "items_behind": ["48516,4"], "jobs": [{"elapsed_time": 115419, "name": "gate-keystone-docs", "url": "https://jenkins02.openstack.org/job/gate-keystone-docs/1003/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 75258, "name": "gate-keystone-pep8", "url": "https://jenkins02.openstack.org/job/gate-keystone-pep8/1000/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1160955, "name": "gate-keystone-python26", "url": "https://jenkins01.openstack.org/job/gate-keystone-python26/1059/", "voting": true, "remaining_time": 135671, "result": null}, {"elapsed_time": 854661, "name": "gate-keystone-python27", "url": "https://jenkins01.openstack.org/job/gate-keystone-python27/1105/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 684605, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-full/14931/", "voting": true, "remaining_time": 1241635, "result": null}, {"elapsed_time": 683344, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14697/", "voting": true, "remaining_time": 1037574, "result": null}, {"elapsed_time": 672761, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-neutron/16388/", "voting": true, "remaining_time": 467800, "result": null}, {"elapsed_time": 658114, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-large-ops/4294/", "voting": true, "remaining_time": 40884, "result": null}, {"elapsed_time": 653007, "name": "gate-grenade-devstack-vm", "url": "https://jenkins01.openstack.org/job/gate-grenade-devstack-vm/12023/", "voting": true, "remaining_time": 1003229, "result": null}, {"elapsed_time": 639570, "name": "gate-swift-devstack-vm-functional", "url": "https://jenkins01.openstack.org/job/gate-swift-devstack-vm-functional/1680/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}], "url": "https://review.openstack.org/48534", "item_ahead": "47546,2", "enqueue_time": 1380290773932, "project": "openstack/keystone", "remaining_time": 1241635, "id": "48534,1"}, {"failing_reasons": [], "items_behind": ["47479,2", "39668,13", "48625,1", "48627,1", "48601,1", "48164,1", "46291,2"], "jobs": [{"elapsed_time": 119304, "name": "gate-tempest-pep8", "url": "https://jenkins01.openstack.org/job/gate-tempest-pep8/1601/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 373183, "name": "gate-tempest-docs", "url": "https://jenkins02.openstack.org/job/gate-tempest-docs/1168/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 635471, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-full/15599/", "voting": true, "remaining_time": 1148914, "result": null}, {"elapsed_time": 605990, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14961/", "voting": true, "remaining_time": 1307006, "result": null}, {"elapsed_time": 603764, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-neutron/16389/", "voting": true, "remaining_time": 536797, "result": null}, {"elapsed_time": 573906, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-large-ops/4295/", "voting": true, "remaining_time": 125092, "result": null}, {"elapsed_time": 570202, "name": "gate-grenade-devstack-vm", "url": "https://jenkins01.openstack.org/job/gate-grenade-devstack-vm/12024/", "voting": true, "remaining_time": 1086034, "result": null}], "url": "https://review.openstack.org/48516", "item_ahead": "48534,1", "enqueue_time": 1380293089245, "project": "openstack/tempest", "remaining_time": 1307006, "id": "48516,4"}, {"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 225181, "name": "gate-nova-docs", "url": "https://jenkins01.openstack.org/job/gate-nova-docs/6817/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 250970, "name": "gate-nova-pep8", "url": "https://jenkins02.openstack.org/job/gate-nova-pep8/4724/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1160801, "name": "gate-nova-python26", "url": "https://jenkins01.openstack.org/job/gate-nova-python26/5803/", "voting": true, "remaining_time": 0, "result": null}, {"elapsed_time": 11087, "name": "gate-nova-python27", "url": "https://jenkins02.openstack.org/job/gate-nova-python27/5871/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 551403, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-full/15600/", "voting": true, "remaining_time": 1232982, "result": null}, {"elapsed_time": 538724, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14698/", "voting": true, "remaining_time": 1182194, "result": null}, {"elapsed_time": 518413, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-neutron/16390/", "voting": true, "remaining_time": 622148, "result": null}, {"elapsed_time": 513228, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-large-ops/4296/", "voting": true, "remaining_time": 185770, "result": null}, {"elapsed_time": 488201, "name": "gate-grenade-devstack-vm", "url": "https://jenkins01.openstack.org/job/gate-grenade-devstack-vm/12025/", "voting": true, "remaining_time": 1168035, "result": null}], "url": "https://review.openstack.org/47479", "item_ahead": "48516,4", "enqueue_time": 1380293138283, "project": "openstack/nova", "remaining_time": 1307006, "id": "47479,2"}, {"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 4238, "name": "gate-nova-docs", "url": "https://jenkins02.openstack.org/job/gate-nova-docs/4674/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 2365, "name": "gate-nova-pep8", "url": "https://jenkins02.openstack.org/job/gate-nova-pep8/4727/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 854913, "name": "gate-nova-python26", "url": "https://jenkins01.openstack.org/job/gate-nova-python26/5806/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 776630, "name": "gate-nova-python27", "url": "https://jenkins02.openstack.org/job/gate-nova-python27/5874/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 477284, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-full/14932/", "voting": true, "remaining_time": 1448956, "result": null}, {"elapsed_time": 474443, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14699/", "voting": true, "remaining_time": 1246475, "result": null}, {"elapsed_time": 472601, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-neutron/16435/", "voting": true, "remaining_time": 841908, "result": null}, {"elapsed_time": 453504, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-large-ops/4055/", "voting": true, "remaining_time": 191249, "result": null}, {"elapsed_time": 444138, "name": "gate-grenade-devstack-vm", "url": "https://jenkins02.openstack.org/job/gate-grenade-devstack-vm/12627/", "voting": true, "remaining_time": 1210811, "result": null}], "url": "https://review.openstack.org/39668", "item_ahead": "48516,4", "enqueue_time": 1380296032916, "project": "openstack/nova", "remaining_time": 1448956, "id": "39668,13"}, {"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 104102, "name": "gate-heat-pep8", "url": "https://jenkins01.openstack.org/job/gate-heat-pep8/2169/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 78608, "name": "gate-heat-docs", "url": "https://jenkins02.openstack.org/job/gate-heat-docs/1279/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 135647, "name": "gate-heat-python26", "url": "https://jenkins02.openstack.org/job/gate-heat-python26/1681/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 131232, "name": "gate-heat-python27", "url": "https://jenkins02.openstack.org/job/gate-heat-python27/1833/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 437367, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-full/15601/", "voting": true, "remaining_time": 1347018, "result": null}, {"elapsed_time": 419164, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14700/", "voting": true, "remaining_time": 1301754, "result": null}, {"elapsed_time": 405004, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-neutron/16391/", "voting": true, "remaining_time": 735557, "result": null}, {"elapsed_time": 388934, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-large-ops/4056/", "voting": true, "remaining_time": 255819, "result": null}], "url": "https://review.openstack.org/48625", "item_ahead": "48516,4", "enqueue_time": 1380298199735, "project": "openstack/heat", "remaining_time": 1448956, "id": "48625,1"}, {"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 2383, "name": "gate-heat-pep8", "url": "https://jenkins02.openstack.org/job/gate-heat-pep8/1669/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 123063, "name": "gate-heat-docs", "url": "https://jenkins01.openstack.org/job/gate-heat-docs/1445/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 140643, "name": "gate-heat-python26", "url": "https://jenkins01.openstack.org/job/gate-heat-python26/1923/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 120361, "name": "gate-heat-python27", "url": "https://jenkins02.openstack.org/job/gate-heat-python27/1834/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 355849, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-full/15602/", "voting": true, "remaining_time": 1428536, "result": null}, {"elapsed_time": 349963, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14962/", "voting": true, "remaining_time": 1563033, "result": null}, {"elapsed_time": 325802, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-neutron/16436/", "voting": true, "remaining_time": 988707, "result": null}, {"elapsed_time": 309685, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-large-ops/4057/", "voting": true, "remaining_time": 335068, "result": null}], "url": "https://review.openstack.org/48627", "item_ahead": "48516,4", "enqueue_time": 1380298279387, "project": "openstack/heat", "remaining_time": 1563033, "id": "48627,1"}, {"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 39984, "name": "gate-swift-docs", "url": "https://jenkins02.openstack.org/job/gate-swift-docs/659/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 62434, "name": "gate-swift-pep8", "url": "https://jenkins02.openstack.org/job/gate-swift-pep8/651/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 135465, "name": "gate-swift-python26", "url": "https://jenkins02.openstack.org/job/gate-swift-python26/714/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 84251, "name": "gate-swift-python27", "url": "https://jenkins02.openstack.org/job/gate-swift-python27/723/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 289217, "name": "gate-swift-devstack-vm-functional", "url": "https://jenkins02.openstack.org/job/gate-swift-devstack-vm-functional/1794/", "voting": true, "remaining_time": 503200, "result": null}, {"elapsed_time": 264841, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-full/15603/", "voting": true, "remaining_time": 1519544, "result": null}, {"elapsed_time": 241185, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-neutron/16437/", "voting": true, "remaining_time": 1073324, "result": null}, {"elapsed_time": 215778, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14963/", "voting": true, "remaining_time": 1697218, "result": null}, {"elapsed_time": 190054, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-large-ops/4297/", "voting": true, "remaining_time": 508944, "result": null}, {"elapsed_time": 166190, "name": "gate-grenade-devstack-vm", "url": "https://jenkins01.openstack.org/job/gate-grenade-devstack-vm/12026/", "voting": true, "remaining_time": 1490046, "result": null}], "url": "https://review.openstack.org/48601", "item_ahead": "48516,4", "enqueue_time": 1380298994701, "project": "openstack/swift", "remaining_time": 1697218, "id": "48601,1"}, {"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 100330, "name": "gate-swift-docs", "url": "https://jenkins02.openstack.org/job/gate-swift-docs/662/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 64171, "name": "gate-swift-pep8", "url": "https://jenkins02.openstack.org/job/gate-swift-pep8/652/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 121329, "name": "gate-swift-python26", "url": "https://jenkins01.openstack.org/job/gate-swift-python26/683/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 5623, "name": "gate-swift-python27", "url": "https://jenkins02.openstack.org/job/gate-swift-python27/726/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": 159076, "name": "gate-swift-devstack-vm-functional", "url": "https://jenkins02.openstack.org/job/gate-swift-devstack-vm-functional/1795/", "voting": true, "remaining_time": 633341, "result": null}, {"elapsed_time": 149233, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-full/15604/", "voting": true, "remaining_time": 1635152, "result": null}, {"elapsed_time": 139770, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-neutron/16438/", "voting": true, "remaining_time": 1174739, "result": null}, {"elapsed_time": 133160, "name": "gate-tempest-devstack-vm-postgres-full", "url": "https://jenkins01.openstack.org/job/gate-tempest-devstack-vm-postgres-full/14701/", "voting": true, "remaining_time": 1587758, "result": null}, {"elapsed_time": 117650, "name": "gate-tempest-devstack-vm-large-ops", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-large-ops/4298/", "voting": true, "remaining_time": 581348, "result": null}, {"elapsed_time": 115132, "name": "gate-grenade-devstack-vm", "url": "https://jenkins02.openstack.org/job/gate-grenade-devstack-vm/12628/", "voting": true, "remaining_time": 1539817, "result": null}], "url": "https://review.openstack.org/48164", "item_ahead": "48516,4", "enqueue_time": 1380299009131, "project": "openstack/swift", "remaining_time": 1697218, "id": "48164,1"}, {"failing_reasons": [], "items_behind": ["48503,1"], "jobs": [{"elapsed_time": 80662, "name": "gate-swift-docs", "url": "https://jenkins01.openstack.org/job/gate-swift-docs/794/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 61048, "name": "gate-swift-pep8", "url": "https://jenkins01.openstack.org/job/gate-swift-pep8/801/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 118183, "name": "gate-swift-python26", "url": "https://jenkins02.openstack.org/job/gate-swift-python26/717/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 99494, "name": "gate-swift-python27", "url": "https://jenkins01.openstack.org/job/gate-swift-python27/723/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 110549, "name": "gate-swift-devstack-vm-functional", "url": "https://jenkins02.openstack.org/job/gate-swift-devstack-vm-functional/1796/", "voting": true, "remaining_time": 681868, "result": null}, {"elapsed_time": 70538, "name": "gate-tempest-devstack-vm-full", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-full/14933/", "voting": true, "remaining_time": 1855702, "result": null}, {"elapsed_time": 60891, "name": "gate-tempest-devstack-vm-neutron", "url": "https://jenkins02.openstack.org/job/gate-tempest-devstack-vm-neutron/16439/", "voting": true, "remaining_time": 1253618, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-postgres-full", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-large-ops", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-grenade-devstack-vm", "url": null, "voting": true, "remaining_time": null, "result": null}], "url": "https://review.openstack.org/46291", "item_ahead": "48516,4", "enqueue_time": 1380299228671, "project": "openstack/swift", "remaining_time": null, "id": "46291,2"}, {"failing_reasons": [], "items_behind": ["48202,1", "48553,4", "47718,7"], "jobs": [{"elapsed_time": 98382, "name": "gate-glance-docs", "url": "https://jenkins02.openstack.org/job/gate-glance-docs/640/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 171699, "name": "gate-glance-pep8", "url": "https://jenkins02.openstack.org/job/gate-glance-pep8/626/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 589539, "name": "gate-glance-python26", "url": "https://jenkins02.openstack.org/job/gate-glance-python26/689/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 520779, "name": "gate-glance-python27", "url": "https://jenkins02.openstack.org/job/gate-glance-python27/726/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-full", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-postgres-full", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-neutron", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-large-ops", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-grenade-devstack-vm", "url": null, "voting": true, "remaining_time": null, "result": null}], "url": "https://review.openstack.org/48503", "item_ahead": "46291,2", "enqueue_time": 1380299426335, "project": "openstack/glance", "remaining_time": null, "id": "48503,1"}, {"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 579487, "name": "gate-horizon-docs", "url": "https://jenkins02.openstack.org/job/gate-horizon-docs/616/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 118371, "name": "gate-horizon-pep8", "url": "https://jenkins01.openstack.org/job/gate-horizon-pep8/826/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 234012, "name": "gate-horizon-python26", "url": "https://jenkins02.openstack.org/job/gate-horizon-python26/756/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 216372, "name": "gate-horizon-python27", "url": "https://jenkins02.openstack.org/job/gate-horizon-python27/716/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 188521, "name": "gate-horizon-python27-django14", "url": "https://jenkins02.openstack.org/job/gate-horizon-python27-django14/685/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 1847, "name": "gate-horizon-selenium", "url": "https://jenkins02.openstack.org/job/gate-horizon-selenium/734/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-full", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-postgres-full", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-neutron", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-large-ops", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-grenade-devstack-vm", "url": null, "voting": true, "remaining_time": null, "result": null}], "url": "https://review.openstack.org/48202", "item_ahead": "48503,1", "enqueue_time": 1380304046069, "project": "openstack/horizon", "remaining_time": null, "id": "48202,1"}, {"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 79009, "name": "gate-keystone-docs", "url": "https://jenkins01.openstack.org/job/gate-keystone-docs/1215/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 89394, "name": "gate-keystone-pep8", "url": "https://jenkins02.openstack.org/job/gate-keystone-pep8/1007/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 633149, "name": "gate-keystone-python26", "url": "https://jenkins02.openstack.org/job/gate-keystone-python26/1065/", "voting": true, "remaining_time": 448519, "result": null}, {"elapsed_time": 8840, "name": "gate-keystone-python27", "url": "https://jenkins02.openstack.org/job/gate-keystone-python27/1097/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-full", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-postgres-full", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-neutron", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-large-ops", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-grenade-devstack-vm", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-swift-devstack-vm-functional", "url": null, "voting": true, "remaining_time": null, "result": null}], "url": "https://review.openstack.org/48553", "item_ahead": "48503,1", "enqueue_time": 1380304548765, "project": "openstack/keystone", "remaining_time": null, "id": "48553,4"}, {"failing_reasons": [], "items_behind": ["48721,1"], "jobs": [{"elapsed_time": 93320, "name": "gate-glance-docs", "url": "https://jenkins02.openstack.org/job/gate-glance-docs/641/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 98965, "name": "gate-glance-pep8", "url": "https://jenkins01.openstack.org/job/gate-glance-pep8/816/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 601959, "name": "gate-glance-python26", "url": "https://jenkins01.openstack.org/job/gate-glance-python26/666/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 588646, "name": "gate-glance-python27", "url": "https://jenkins02.openstack.org/job/gate-glance-python27/729/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-full", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-postgres-full", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-neutron", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-large-ops", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-grenade-devstack-vm", "url": null, "voting": true, "remaining_time": null, "result": null}], "url": "https://review.openstack.org/47718", "item_ahead": "48503,1", "enqueue_time": 1380307097942, "project": "openstack/glance", "remaining_time": null, "id": "47718,7"}, {"failing_reasons": [], "items_behind": ["48636,3", "48560,1"], "jobs": [{"elapsed_time": 250871, "name": "gate-nova-docs", "url": "https://jenkins01.openstack.org/job/gate-nova-docs/6822/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 271342, "name": "gate-nova-pep8", "url": "https://jenkins02.openstack.org/job/gate-nova-pep8/4733/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 603753, "name": "gate-nova-python26", "url": "https://jenkins01.openstack.org/job/gate-nova-python26/5810/", "voting": true, "remaining_time": 378103, "result": null}, {"elapsed_time": 607935, "name": "gate-nova-python27", "url": "https://jenkins02.openstack.org/job/gate-nova-python27/5878/", "voting": true, "remaining_time": 201525, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-full", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-postgres-full", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-neutron", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-large-ops", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-grenade-devstack-vm", "url": null, "voting": true, "remaining_time": null, "result": null}], "url": "https://review.openstack.org/48721", "item_ahead": "47718,7", "enqueue_time": 1380308978350, "project": "openstack/nova", "remaining_time": null, "id": "48721,1"}, {"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 220348, "name": "gate-ceilometer-docs", "url": "https://jenkins02.openstack.org/job/gate-ceilometer-docs/995/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 70164, "name": "gate-ceilometer-pep8", "url": "https://jenkins01.openstack.org/job/gate-ceilometer-pep8/1153/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 554806, "name": "gate-ceilometer-python26", "url": "https://jenkins02.openstack.org/job/gate-ceilometer-python26/1021/", "voting": true, "remaining_time": 43, "result": null}, {"elapsed_time": 329706, "name": "gate-ceilometer-python27", "url": "https://jenkins02.openstack.org/job/gate-ceilometer-python27/1009/", "voting": true, "remaining_time": 0, "result": "FAILURE"}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-full", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-postgres-full", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-neutron", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-large-ops", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-swift-devstack-vm-functional", "url": null, "voting": true, "remaining_time": null, "result": null}], "url": "https://review.openstack.org/48636", "item_ahead": "48721,1", "enqueue_time": 1380309007955, "project": "openstack/ceilometer", "remaining_time": null, "id": "48636,3"}, {"failing_reasons": [], "items_behind": [], "jobs": [{"elapsed_time": 5555, "name": "gate-tempest-requirements", "url": "https://jenkins01.openstack.org/job/gate-tempest-requirements/35/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 103859, "name": "gate-tempest-pep8", "url": "https://jenkins01.openstack.org/job/gate-tempest-pep8/1605/", "voting": true, "remaining_time": 0, "result": "SUCCESS"}, {"elapsed_time": 263246, "name": "gate-tempest-docs", "url": "https://jenkins02.openstack.org/job/gate-tempest-docs/1175/", "voting": true, "remaining_time": 157235, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-full", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-postgres-full", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-neutron", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-tempest-devstack-vm-large-ops", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": null, "name": "gate-grenade-devstack-vm", "url": null, "voting": true, "remaining_time": null, "result": null}], "url": "https://review.openstack.org/48560", "item_ahead": "48721,1", "enqueue_time": 1380309816876, "project": "openstack/tempest", "remaining_time": null, "id": "48560,1"}]], "name": "openstack-dev/devstack, openstack-dev/grenade, openstack-dev/pbr, openstack-infra/devstack-gate, openstack/ceilometer, openstack/cinder, openstack/glance, openstack/heat, openstack/horizon, openstack/keystone, openstack/neutron, openstack/nova, openstack/oslo.config, openstack/oslo.messaging, openstack/oslo.version, openstack/python-ceilometerclient, openstack/python-cinderclient, openstack/python-glanceclient, openstack/python-heatclient, openstack/python-keystoneclient, openstack/python-neutronclient, openstack/python-novaclient, openstack/python-swiftclient, openstack/requirements, openstack/swift, openstack/tempest, z/tempest"}, {"heads": [], "name": "openstack/ironic"}, {"heads": [], "name": "openstack-dev/cookiecutter, openstack-dev/openstack-nose, openstack-dev/openstack-qa, openstack-dev/sandbox, openstack-infra/activity-board, openstack-infra/askbot-theme, openstack-infra/groups, openstack-infra/lodgeit, openstack-infra/meetbot, openstack-infra/nose-html-output, openstack-infra/odsreg, openstack-infra/publications, openstack-infra/puppet-apparmor, openstack-infra/puppet-dashboard, openstack-infra/puppet-vcsrepo, openstack-infra/releasestatus, openstack-infra/reviewstats, openstack-infra/tripleo-ci, openstack/api-site, openstack/compute-api, openstack/database-api, openstack/governance, openstack/heat-templates, openstack/identity-api, openstack/image-api, openstack/netconn-api, openstack/object-api, openstack/openstack-chef, openstack/tripleo-heat-templates, openstack/tripleo-image-elements, openstack/trove-integration, openstack/volume-api, stackforge/MRaaS, stackforge/cloudcafe, stackforge/clouddocs-maven-plugin, stackforge/cloudroast, stackforge/fuel-astute, stackforge/fuel-main, stackforge/fuel-ostf-plugin, stackforge/fuel-ostf-tests, stackforge/fuel-web, stackforge/golang-client, stackforge/murano-agent, stackforge/murano-deployment, stackforge/murano-docs, stackforge/murano-tests, stackforge/novaimagebuilder, stackforge/occi-os, stackforge/opencafe, stackforge/openvz-nova-driver, stackforge/puppet-openstack_dev_env, stackforge/puppet-savanna, stackforge/python-climateclient, stackforge/savanna-extra, stackforge/savanna-image-elements, stackforge/staccato, stackforge/tuskar-ui"}, {"heads": [], "name": "stackforge/savanna"}, {"heads": [], "name": "stackforge/cookbook-openstack-image"}, {"heads": [], "name": "stackforge/puppet-cinder"}, {"heads": [], "name": "openstack/trove"}, {"heads": [], "name": "openstack/python-ironicclient"}, {"heads": [], "name": "stackforge/cookbook-openstack-identity"}, {"heads": [], "name": "stackforge/python-tuskarclient"}, {"heads": [], "name": "stackforge/bufunfa"}, {"heads": [], "name": "openstack-infra/gerrit"}, {"heads": [], "name": "openstack/heat-cfntools"}, {"heads": [], "name": "stackforge/taskflow"}, {"heads": [], "name": "openstack/openstack-planet"}, {"heads": [], "name": "stackforge/barbican"}, {"heads": [], "name": "stackforge/pycadf"}, {"heads": [], "name": "openstack-infra/jeepyb"}, {"heads": [], "name": "stackforge/puppet-heat"}, {"heads": [], "name": "stackforge/packstack"}, {"heads": [], "name": "openstack/oslo.sphinx"}, {"heads": [], "name": "stackforge/murano-conductor"}, {"heads": [], "name": "openstack-infra/reviewday"}, {"heads": [], "name": "openstack/python-marconiclient"}, {"heads": [], "name": "stackforge/puppet-glance"}, {"heads": [], "name": "stackforge/anvil"}, {"heads": [], "name": "stackforge/puppet-nova"}, {"heads": [], "name": "stackforge/murano-api"}, {"heads": [], "name": "stackforge/cookbook-openstack-dashboard"}, {"heads": [], "name": "stackforge/murano-common"}, {"heads": [], "name": "openstack-infra/gearman-plugin"}, {"heads": [], "name": "openstack-infra/gerritbot"}, {"heads": [], "name": "stackforge/python-savannaclient"}, {"heads": [], "name": "openstack-infra/elastic-recheck"}, {"heads": [], "name": "stackforge/pecan"}, {"heads": [], "name": "openstack/diskimage-builder"}, {"heads": [], "name": "stackforge/cookbook-openstack-orchestration"}, {"heads": [], "name": "stackforge/cookbook-openstack-common"}, {"heads": [], "name": "stackforge/cookbook-openstack-object-storage"}, {"heads": [], "name": "openstack-infra/nodepool"}, {"heads": [], "name": "stackforge/cookbook-openstack-compute"}, {"heads": [], "name": "openstack/python-troveclient"}, {"heads": [], "name": "stackforge/climate"}, {"heads": [], "name": "openstack-infra/git-review"}, {"heads": [], "name": "openstack-infra/gitdm"}, {"heads": [], "name": "stackforge/designate"}, {"heads": [], "name": "openstack-infra/config"}, {"heads": [], "name": "stackforge/tuskar"}, {"heads": [], "name": "stackforge/murano-dashboard"}, {"heads": [], "name": "stackforge/pyghmi"}, {"heads": [], "name": "openstack/operations-guide"}, {"heads": [], "name": "stackforge/cl-openstack-client"}, {"heads": [], "name": "stackforge/puppet-neutron"}, {"heads": [], "name": "stackforge/stackalytics"}, {"heads": [], "name": "stackforge/python-manilaclient"}, {"heads": [], "name": "stackforge/puppet-openstack"}, {"heads": [], "name": "stackforge/cookbook-openstack-metering"}, {"heads": [], "name": "openstack-infra/gerritlib"}, {"heads": [], "name": "stackforge/sqlalchemy-migrate"}, {"heads": [], "name": "stackforge/manila"}, {"heads": [], "name": "stackforge/kwapi"}, {"heads": [], "name": "openstack-infra/zmq-event-publisher"}, {"heads": [], "name": "openstack/os-collect-config"}, {"heads": [], "name": "openstack-infra/statusbot"}, {"heads": [], "name": "stackforge/python-libraclient"}, {"heads": [], "name": "openstack-infra/gear"}, {"heads": [], "name": "openstack-infra/zuul"}, {"heads": [], "name": "stackforge/libra"}, {"heads": [], "name": "stackforge/bindep"}, {"heads": [], "name": "stackforge/savanna-dashboard"}, {"heads": [], "name": "openstack/os-apply-config"}, {"heads": [], "name": "stackforge/openstack-chef-repo"}, {"heads": [], "name": "openstack-infra/storyboard"}, {"heads": [], "name": "stackforge/cookbook-openstack-network"}, {"heads": [], "name": "stackforge/cookbook-openstack-ops-database"}, {"heads": [], "name": "openstack-infra/pypi-mirror"}, {"heads": [], "name": "openstack/oslo-incubator"}, {"heads": [], "name": "stackforge/puppet-swift"}, {"heads": [], "name": "openstack-dev/hacking"}, {"heads": [], "name": "stackforge/cookbook-openstack-ops-messaging"}, {"heads": [], "name": "stackforge/puppet-keystone"}, {"heads": [], "name": "stackforge/inception"}, {"heads": [], "name": "openstack/os-refresh-config"}, {"heads": [], "name": "stackforge/healthnmon"}, {"heads": [], "name": "openstack-infra/jenkins-job-builder"}, {"heads": [], "name": "stackforge/python-muranoclient"}, {"heads": [], "name": "stackforge/python-designateclient"}, {"heads": [], "name": "stackforge/puppet-ceilometer"}, {"heads": [], "name": "openstack/django_openstack_auth"}, {"heads": [], "name": "stackforge/cookbook-openstack-block-storage"}, {"heads": [], "name": "stackforge/puppet-tempest"}, {"heads": [], "name": "stackforge/billingstack"}, {"heads": [], "name": "openstack/tripleo-incubator"}, {"heads": [], "name": "stackforge/rally"}, {"heads": [], "name": "stackforge/wsme"}, {"heads": [], "name": "openstack/python-openstackclient"}, {"heads": [], "name": "openstack/marconi"}, {"heads": [], "name": "openstack/openstack-manuals"}], "name": "gate"}, {"description": "This pipeline runs jobs that operate after each change is merged.", "change_queues": [{"heads": [[{"failing_reasons": ["at least one job failed"], "items_behind": [], "jobs": [{"elapsed_time": 111939, "name": "nova-branch-tarball", "url": "https://jenkins01.openstack.org/job/nova-branch-tarball/399/", "voting": true, "remaining_time": 71193, "result": null}, {"elapsed_time": 111936, "name": "nova-coverage", "url": "https://jenkins01.openstack.org/job/nova-coverage/395/", "voting": true, "remaining_time": 902451, "result": null}, {"elapsed_time": 111938, "name": "nova-docs", "url": "https://jenkins01.openstack.org/job/nova-docs/376/", "voting": true, "remaining_time": 204320, "result": null}, {"elapsed_time": 102513, "name": "nova-upstream-translation-update", "url": "https://jenkins.openstack.org/job/nova-upstream-translation-update/4393/", "voting": true, "remaining_time": 0, "result": "FAILURE"}], "url": "https://review.openstack.org/gitweb?p=openstack/nova.git;a=commitdiff;h=839b5e593f54dbd94f430af45e77f174329942b5", "item_ahead": null, "enqueue_time": 1380314129491, "project": "openstack/nova", "remaining_time": 902451, "id": "839b5e593f54dbd94f430af45e77f174329942b5"}], [{"failing_reasons": [], "items_behind": [], "jobs": [{"elapsed_time": 79896, "name": "tempest-docs", "url": "https://jenkins02.openstack.org/job/tempest-docs/83/", "voting": true, "remaining_time": 150587, "result": null}, {"elapsed_time": 79831, "name": "tempest-branch-tarball", "url": "https://jenkins02.openstack.org/job/tempest-branch-tarball/90/", "voting": true, "remaining_time": 92417, "result": null}], "url": "https://review.openstack.org/gitweb?p=openstack/tempest.git;a=commitdiff;h=6d4eecc3ca744a6b6d78f57b4a9177652bcab166", "item_ahead": null, "enqueue_time": 1380314162965, "project": "openstack/tempest", "remaining_time": 150587, "id": "6d4eecc3ca744a6b6d78f57b4a9177652bcab166"}], [{"failing_reasons": [], "items_behind": [], "jobs": [{"elapsed_time": null, "name": "nova-branch-tarball", "url": null, "voting": true, "remaining_time": null, "result": null}, {"elapsed_time": 72296, "name": "nova-coverage", "url": "https://jenkins01.openstack.org/job/nova-coverage/396/", "voting": true, "remaining_time": 942091, "result": null}, {"elapsed_time": 72128, "name": "nova-docs", "url": "https://jenkins02.openstack.org/job/nova-docs/328/", "voting": true, "remaining_time": 226661, "result": null}, {"elapsed_time": 10567, "name": "nova-upstream-translation-update", "url": "https://jenkins.openstack.org/job/nova-upstream-translation-update/4394/", "voting": true, "remaining_time": 139, "result": null}], "url": "https://review.openstack.org/gitweb?p=openstack/nova.git;a=commitdiff;h=a9890c554685959199cb01dfff4a989c2e410649", "item_ahead": null, "enqueue_time": 1380314170606, "project": "openstack/nova", "remaining_time": null, "id": "a9890c554685959199cb01dfff4a989c2e410649"}], [{"failing_reasons": [], "items_behind": [], "jobs": [{"elapsed_time": 58196, "name": "nova-branch-tarball", "url": "https://jenkins02.openstack.org/job/nova-branch-tarball/306/", "voting": true, "remaining_time": 162209, "result": null}, {"elapsed_time": 58156, "name": "nova-coverage", "url": "https://jenkins02.openstack.org/job/nova-coverage/308/", "voting": true, "remaining_time": 1164893, "result": null}, {"elapsed_time": 58150, "name": "nova-docs", "url": "https://jenkins02.openstack.org/job/nova-docs/329/", "voting": true, "remaining_time": 240639, "result": null}, {"elapsed_time": null, "name": "nova-upstream-translation-update", "url": null, "voting": true, "remaining_time": null, "result": null}], "url": "https://review.openstack.org/gitweb?p=openstack/nova.git;a=commitdiff;h=2d5755416c6ae52f61ec342d100cec9be6ff4539", "item_ahead": null, "enqueue_time": 1380314184610, "project": "openstack/nova", "remaining_time": null, "id": "2d5755416c6ae52f61ec342d100cec9be6ff4539"}]], "name": "openstack-dev/hacking, openstack-dev/openstack-qa, openstack-dev/pbr, openstack-infra/config, openstack-infra/gear, openstack-infra/gearman-plugin, openstack-infra/gerrit, openstack-infra/gerritbot, openstack-infra/git-review, openstack-infra/jenkins-job-builder, openstack-infra/nodepool, openstack-infra/nose-html-output, openstack-infra/publications, openstack-infra/reviewday, openstack-infra/statusbot, openstack-infra/storyboard, openstack-infra/zmq-event-publisher, openstack-infra/zuul, openstack/api-site, openstack/ceilometer, openstack/cinder, openstack/compute-api, openstack/diskimage-builder, openstack/django_openstack_auth, openstack/glance, openstack/heat, openstack/heat-cfntools, openstack/horizon, openstack/identity-api, openstack/image-api, openstack/ironic, openstack/keystone, openstack/marconi, openstack/netconn-api, openstack/neutron, openstack/nova, openstack/object-api, openstack/openstack-manuals, openstack/operations-guide, openstack/os-apply-config, openstack/os-collect-config, openstack/os-refresh-config, openstack/oslo-incubator, openstack/oslo.config, openstack/oslo.messaging, openstack/oslo.sphinx, openstack/oslo.version, openstack/python-ceilometerclient, openstack/python-cinderclient, openstack/python-glanceclient, openstack/python-heatclient, openstack/python-ironicclient, openstack/python-keystoneclient, openstack/python-marconiclient, openstack/python-neutronclient, openstack/python-novaclient, openstack/python-openstackclient, openstack/python-swiftclient, openstack/python-troveclient, openstack/requirements, openstack/swift, openstack/tempest, openstack/tripleo-image-elements, openstack/tripleo-incubator, openstack/trove, openstack/volume-api, stackforge/barbican, stackforge/billingstack, stackforge/bindep, stackforge/bufunfa, stackforge/designate, stackforge/libra, stackforge/manila, stackforge/murano-api, stackforge/murano-common, stackforge/murano-conductor, stackforge/murano-dashboard, stackforge/pecan, stackforge/pycadf, stackforge/python-designateclient, stackforge/python-manilaclient, stackforge/python-muranoclient, stackforge/python-savannaclient, stackforge/python-tuskarclient, stackforge/rally, stackforge/savanna, stackforge/savanna-dashboard, stackforge/sqlalchemy-migrate, stackforge/stackalytics, stackforge/wsme"}], "name": "post"}, {"description": "This pipeline runs jobs on projects in response to pre-release tags.", "change_queues": [{"heads": [], "name": "openstack-dev/hacking, openstack-dev/pbr, openstack-infra/gear, openstack-infra/gerritbot, openstack-infra/gerritlib, openstack-infra/git-review, openstack-infra/jeepyb, openstack-infra/jenkins-job-builder, openstack-infra/nodepool, openstack-infra/nose-html-output, openstack-infra/pypi-mirror, openstack-infra/reviewday, openstack-infra/statusbot, openstack-infra/storyboard, openstack-infra/zuul, openstack/ceilometer, openstack/cinder, openstack/diskimage-builder, openstack/django_openstack_auth, openstack/glance, openstack/heat, openstack/heat-cfntools, openstack/horizon, openstack/ironic, openstack/keystone, openstack/marconi, openstack/neutron, openstack/nova, openstack/os-apply-config, openstack/os-collect-config, openstack/os-refresh-config, openstack/oslo.config, openstack/oslo.messaging, openstack/oslo.sphinx, openstack/oslo.version, openstack/python-ceilometerclient, openstack/python-cinderclient, openstack/python-glanceclient, openstack/python-heatclient, openstack/python-keystoneclient, openstack/python-marconiclient, openstack/python-neutronclient, openstack/python-novaclient, openstack/python-openstackclient, openstack/python-swiftclient, openstack/python-troveclient, openstack/swift, openstack/tripleo-image-elements, openstack/tripleo-incubator, openstack/trove, stackforge/billingstack, stackforge/bindep, stackforge/designate, stackforge/libra, stackforge/murano-api, stackforge/murano-common, stackforge/murano-conductor, stackforge/murano-dashboard, stackforge/pecan, stackforge/pycadf, stackforge/python-designateclient, stackforge/python-muranoclient, stackforge/python-savannaclient, stackforge/rally, stackforge/savanna, stackforge/savanna-dashboard, stackforge/sqlalchemy-migrate, stackforge/stackalytics, stackforge/wsme"}], "name": "pre-release"}, {"description": "When a commit is tagged as a release, this pipeline runs jobs that publish archives and documentation.", "change_queues": [{"heads": [], "name": "openstack-dev/hacking, openstack-dev/openstack-qa, openstack-dev/pbr, openstack-infra/gear, openstack-infra/gearman-plugin, openstack-infra/gerritbot, openstack-infra/gerritlib, openstack-infra/git-review, openstack-infra/jeepyb, openstack-infra/jenkins-job-builder, openstack-infra/nodepool, openstack-infra/nose-html-output, openstack-infra/pypi-mirror, openstack-infra/reviewday, openstack-infra/statusbot, openstack-infra/storyboard, openstack-infra/zmq-event-publisher, openstack-infra/zuul, openstack/ceilometer, openstack/cinder, openstack/diskimage-builder, openstack/django_openstack_auth, openstack/glance, openstack/heat, openstack/heat-cfntools, openstack/horizon, openstack/ironic, openstack/keystone, openstack/marconi, openstack/neutron, openstack/nova, openstack/os-apply-config, openstack/os-collect-config, openstack/os-refresh-config, openstack/oslo-incubator, openstack/oslo.config, openstack/oslo.messaging, openstack/oslo.sphinx, openstack/oslo.version, openstack/python-ceilometerclient, openstack/python-cinderclient, openstack/python-glanceclient, openstack/python-heatclient, openstack/python-keystoneclient, openstack/python-marconiclient, openstack/python-neutronclient, openstack/python-novaclient, openstack/python-openstackclient, openstack/python-swiftclient, openstack/python-troveclient, openstack/swift, openstack/tripleo-image-elements, openstack/tripleo-incubator, openstack/trove, stackforge/billingstack, stackforge/bindep, stackforge/designate, stackforge/libra, stackforge/murano-api, stackforge/murano-common, stackforge/murano-conductor, stackforge/murano-dashboard, stackforge/pecan, stackforge/pycadf, stackforge/python-designateclient, stackforge/python-muranoclient, stackforge/python-savannaclient, stackforge/rally, stackforge/savanna, stackforge/savanna-dashboard, stackforge/sqlalchemy-migrate, stackforge/stackalytics, stackforge/wsme"}], "name": "release"}, {"description": "This pipeline is used for silently testing new jobs.", "change_queues": [{"heads": [], "name": ""}], "name": "silent"}, {"description": "On-demand pipeline for requesting a run against a set of jobs that are not yet gating. Leave review comment of \"check experimental\" to run jobs in this pipeline.", "change_queues": [{"heads": [], "name": "openstack-dev/devstack, openstack-dev/grenade, openstack-dev/pbr, openstack-infra/devstack-gate, openstack/cinder, openstack/glance, openstack/heat, openstack/horizon, openstack/keystone, openstack/neutron, openstack/nova, openstack/oslo-incubator, openstack/python-cinderclient, openstack/python-glanceclient, openstack/python-heatclient, openstack/python-keystoneclient, openstack/python-neutronclient, openstack/python-novaclient, openstack/swift, openstack/tempest, stackforge/sqlalchemy-migrate"}], "name": "experimental"}, {"description": "Jobs in this queue are triggered on a timer.", "change_queues": [{"heads": [], "name": "openstack-infra/gitdm, openstack-infra/zuul, openstack/ceilometer, openstack/cinder, openstack/glance, openstack/heat, openstack/horizon, openstack/keystone, openstack/neutron, openstack/nova, openstack/openstack-manuals, openstack/requirements, openstack/tempest, stackforge/savanna"}], "name": "periodic"}], "trigger_event_queue": {"length": 85}, "result_event_queue": {"length": 2}} \ No newline at end of file
diff --git a/etc/status/public_html/styles/zuul.css b/etc/status/public_html/styles/zuul.css
deleted file mode 100644
index 44fd7377e..000000000
--- a/etc/status/public_html/styles/zuul.css
+++ /dev/null
@@ -1,58 +0,0 @@
-.zuul-change {
- margin-bottom: 10px;
-}
-
-.zuul-change-id {
- float: right;
-}
-
-.zuul-job-result {
- float: right;
- width: 70px;
- height: 15px;
- margin: 2px 0 0 0;
-}
-
-.zuul-change-total-result {
- height: 10px;
- width: 100px;
- margin: 0;
- display: inline-block;
- vertical-align: middle;
-}
-
-.zuul-spinner,
-.zuul-spinner:hover {
- opacity: 0;
- transition: opacity 0.5s ease-out;
- cursor: default;
- pointer-events: none;
-}
-
-.zuul-spinner-on,
-.zuul-spinner-on:hover {
- opacity: 1;
- transition-duration: 0.2s;
- cursor: progress;
-}
-
-.zuul-change-cell {
- padding-left: 5px;
-}
-
-.zuul-change-job {
- padding: 2px 8px;
-}
-
-.zuul-job-name {
- font-size: small;
-}
-
-.zuul-non-voting-desc {
- font-size: smaller;
-}
-
-.zuul-patchset-header {
- font-size: small;
- padding: 8px 12px;
-} \ No newline at end of file
diff --git a/etc/status/public_html/zuul.app.js b/etc/status/public_html/zuul.app.js
deleted file mode 100644
index 6e35eb344..000000000
--- a/etc/status/public_html/zuul.app.js
+++ /dev/null
@@ -1,108 +0,0 @@
-// Client script for Zuul status page
-//
-// @licstart The following is the entire license notice for the
-// JavaScript code in this page.
-//
-// Copyright 2013 OpenStack Foundation
-// Copyright 2013 Timo Tijhof
-// Copyright 2013 Wikimedia Foundation
-// Copyright 2014 Rackspace Australia
-//
-// Licensed under the Apache License, Version 2.0 (the "License"); you may
-// not use this file except in compliance with the License. You may obtain
-// a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-// License for the specific language governing permissions and limitations
-// under the License.
-//
-// @licend The above is the entire license notice
-// for the JavaScript code in this page.
-
-/*exported zuul_build_dom, zuul_start */
-
-function zuul_build_dom($, container) {
- // Build a default-looking DOM
- var default_layout = '<div class="container">'
- + '<div class="zuul-container" id="zuul-container">'
- + '<div style="display: none;" class="alert" id="zuul_msg"></div>'
- + '<button class="btn pull-right zuul-spinner">updating <span class="glyphicon glyphicon-refresh"></span></button>'
- + '<p>Queue lengths: <span id="zuul_queue_events_num">0</span> events, <span id="zuul_queue_management_events_num">0</span> management events, <span id="zuul_queue_results_num">0</span> results.</p>'
- + '<div id="zuul_controls"></div>'
- + '<div id="zuul_pipelines" class="row"></div>'
- + '<p>Zuul version: <span id="zuul-version-span"></span></p>'
- + '<p>Last reconfigured: <span id="last-reconfigured-span"></span></p>'
- + '</div></div>';
-
- $(function ($) {
- // DOM ready
- var $container = $(container);
- $container.html(default_layout);
- });
-}
-
-/**
- * @return The $.zuul instance
- */
-function zuul_start($) {
- // Start the zuul app (expects default dom)
-
- var $container, $indicator;
- var demo = location.search.match(/[?&]demo=([^?&]*)/),
- source_url = location.search.match(/[?&]source_url=([^?&]*)/),
- source = demo ? './status-' + (demo[1] || 'basic') + '.json-sample' :
- 'status';
- source = source_url ? source_url[1] : source;
-
- var zuul = $.zuul({
- source: source,
- //graphite_url: 'http://graphite.openstack.org/render/'
- });
-
- zuul.jq.on('update-start', function () {
- $container.addClass('zuul-container-loading');
- $indicator.addClass('zuul-spinner-on');
- });
-
- zuul.jq.on('update-end', function () {
- $container.removeClass('zuul-container-loading');
- setTimeout(function () {
- $indicator.removeClass('zuul-spinner-on');
- }, 500);
- });
-
- zuul.jq.one('update-end', function () {
- // Do this asynchronous so that if the first update adds a
- // message, it will not animate while we fade in the content.
- // Instead it simply appears with the rest of the content.
- setTimeout(function () {
- // Fade in the content
- $container.addClass('zuul-container-ready');
- });
- });
-
- $(function ($) {
- // DOM ready
- $container = $('#zuul-container');
- $indicator = $('#zuul-spinner');
- $('#zuul_controls').append(zuul.app.control_form());
-
- zuul.app.schedule();
-
- $(document).on({
- 'show.visibility': function () {
- zuul.options.enabled = true;
- zuul.app.update();
- },
- 'hide.visibility': function () {
- zuul.options.enabled = false;
- }
- });
- });
-
- return zuul;
-}