Add gerrit dashboard files

Move the gerrit-dash-creator input files to a repo where the Oslo team
can more easily manage them and add a tox environment with supporting
tools to build the dashboard URLs.

Change-Id: I9057ea3ae1d96ed1d122de72a00273c42c15f809
This commit is contained in:
Doug Hellmann 2015-03-24 15:21:28 +00:00 committed by Ben Nemec
parent 3996c3aec4
commit 49bf36e674
1 changed files with 16 additions and 0 deletions

16
build_dashboards.sh Executable file
View File

@ -0,0 +1,16 @@
#!/bin/bash
#
# Process the dashboard files and emit the URLs
creator_dir=$1
dashboard_dir=$2
cd $creator_dir
for f in $dashboard_dir/*.dash
do
echo '----------------------------------------'
echo $(basename $f .dash)
echo '----------------------------------------'
./gerrit-dash-creator $f
done