diff options
-rwxr-xr-x | bin/reproducible_html_graphs.sh | 6 | ||||
-rw-r--r-- | job-cfg/reproducible.yaml | 9 |
2 files changed, 14 insertions, 1 deletions
diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh index c9912c73..14d6679c 100755 --- a/bin/reproducible_html_graphs.sh +++ b/bin/reproducible_html_graphs.sh @@ -14,7 +14,11 @@ common_init "$@" init_html gather_stats -SUITE="sid" # we only care about sid status here (for now) +if [ -n "$1" ] ; then + SUITE="$1" +else + SUITE="sid" +fi ARCH="amd64" # we only care about amd64 status here (for now) # diff --git a/job-cfg/reproducible.yaml b/job-cfg/reproducible.yaml index 4dd2b980..b0e4cc3e 100644 --- a/job-cfg/reproducible.yaml +++ b/job-cfg/reproducible.yaml @@ -153,6 +153,10 @@ - job-template: defaults: reproducible + name: '{name}_html_graphs_experimental' + +- job-template: + defaults: reproducible name: '{name}_html_indexes' - job-template: @@ -241,6 +245,11 @@ my_timed: '0 * * * *' my_shell: '/srv/jenkins/bin/reproducible_html_graphs.sh' my_recipients: 'holger@layer-acht.org' + - '{name}_html_graphs_experimental': + my_description: 'Generate HTML results (stats with graphs) for reproducible builds.' + my_timed: '15 * * * *' + my_shell: '/srv/jenkins/bin/reproducible_html_graphs.sh experimental' + my_recipients: 'holger@layer-acht.org' - '{name}_html_indexes': my_description: 'Generate HTML results (indexes) for reproducible builds.' my_timed: '59 */1 * * *' |