~xubuntu-dev/ubuntu-cdimage/xubuntu-base

« back to all changes in this revision

Viewing changes to bin/daily-checks

  • Committer: Sean Davis
  • Date: 2018-03-28 10:32:07 UTC
  • mfrom: (1559.1.156 ubuntu-cdimage)
  • Revision ID: smd.seandavis@gmail.com-20180328103207-o6s9d6h0hxxh8eqc
Merge lp:ubuntu-cdimage rev 1715

Show diffs side-by-side

added added

removed removed

Lines of Context:
189
189
 
190
190
    releasers = get_notify_addresses(config)
191
191
    all_warnings = get_all_warnings(projects)
 
192
    subj = 'Daily CD health checks'
192
193
    if all_warnings == '':
193
194
        all_warnings = 'No problems found!'
 
195
        subj = subj + ' - OK'
194
196
    body = """\
195
197
This is a daily health check report on all CD images.
196
198
If you have any questions, contact Colin Watson <cjwatson@ubuntu.com>.
198
200
%s
199
201
""" % all_warnings
200
202
    send_mail(
201
 
        "Daily CD health checks", "daily-checks", releasers, body,
 
203
        subj, "daily-checks", releasers, body,
202
204
        dry_run=options.stdout)
203
205
 
204
206
    for project in projects:
249
251
        'kubuntu-plasma5',
250
252
        'mythbuntu',
251
253
        'lubuntu',
 
254
        'lubuntu-next',
252
255
        'ubuntu-gnome',
253
256
        'ubuntu-mate',
254
257
        'ubuntukylin',
 
258
        'ubuntu-budgie',
255
259
        )
256
260
    if not options.series:
257
 
        options.series = ('precise', 'trusty', 'xenial')
 
261
        options.series = ('precise', 'trusty', 'xenial', 'bionic')
258
262
 
259
263
    for project in projects:
260
264
        for series in options.series: