Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Debian QA
jenkins.debian.net
Commits
1d072584
Commit
1d072584
authored
Nov 26, 2015
by
Holger Levsen
Browse files
reproducible: sort usertags (in graphs+table) alphabetically
parent
eef4cb36
Changes
1
Show whitespace changes
Inline
Side-by-side
bin/reproducible_html_dashboard.sh
View file @
1d072584
...
...
@@ -29,7 +29,8 @@ for i in reproducible unreproducible FTBFS other ; do
done
FIELDS[2]
=
"datum, oldest"
FIELDS[3]
=
"datum "
for
TAG
in
$USERTAGS
;
do
# for $(sorted list of usertags)…
for
TAG
in
$(
echo
"
$USERTAGS
"
|
sed
-s
"s# #
\n
#g"
|
sort
-u
| xargs
echo
)
;
do
# for this table (#3) bugs with ftbfs tags are ignored _now_…
if
[
"
$TAG
"
=
"ftbfs"
]
;
then
continue
...
...
@@ -44,6 +45,7 @@ FIELDS[5]="datum, known_issues"
FIELDS[7]
=
"datum, done_bugs, open_bugs"
SUM_DONE
=
"(0"
SUM_OPEN
=
"(0"
# no need to sort the usertags, only their sum will be used
for
TAG
in
$USERTAGS
;
do
SUM_DONE
=
"
$SUM_DONE
+done_
$TAG
"
SUM_OPEN
=
"
$SUM_OPEN
+open_
$TAG
"
...
...
@@ -51,7 +53,8 @@ done
SUM_DONE
=
"
$SUM_DONE
)"
SUM_OPEN
=
"
$SUM_OPEN
)"
FIELDS[8]
=
"datum "
for
TAG
in
$USERTAGS
;
do
# for $(sorted list of usertags)…
for
TAG
in
$(
echo
"
$USERTAGS
"
|
sed
-s
"s# #
\n
#g"
|
sort
-u
| xargs
echo
)
;
do
# for this table (#8) bugs with ftbfs tags are ignored.
if
[
"
$TAG
"
=
"ftbfs"
]
;
then
continue
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment