Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(675)

Unified Diff: master/skia_master_scripts/housekeeping_monitoring_factory.py

Issue 648353002: Remove Skia's forked buildbot code (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Address comment Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: master/skia_master_scripts/housekeeping_monitoring_factory.py
diff --git a/master/skia_master_scripts/housekeeping_monitoring_factory.py b/master/skia_master_scripts/housekeeping_monitoring_factory.py
deleted file mode 100644
index 7cd5093df9464fe1345a8982197ddbe0a21dce41..0000000000000000000000000000000000000000
--- a/master/skia_master_scripts/housekeeping_monitoring_factory.py
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright (c) 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-
-"""Factory for a builder which monitors the buildbots."""
-
-
-from skia_master_scripts import factory as skia_factory
-import builder_name_schema
-
-
-class HouseKeepingMonitoringFactory(skia_factory.SkiaFactory):
-
- def Build(self, role=builder_name_schema.BUILDER_ROLE_HOUSEKEEPER,
- clobber=None):
- """Build and return the complete BuildFactory.
-
- role: string; type of builder.
- clobber: boolean indicating whether we should clean before building
- """
- if role != builder_name_schema.BUILDER_ROLE_HOUSEKEEPER:
- raise Exception('Housekeeping builders must have role "%s"' %
- builder_name_schema.BUILDER_ROLE_HOUSEKEEPER)
- self.UpdateSteps()
-
- self.AddSlaveScript(script='update_all_slave_hosts.py',
- description='UpdateSlaveHosts')
- self.AddSlaveScript(script='update_all_buildslave_checkouts.py',
- description='UpdateAllBuildslaves')
- self.AddSlaveScript(script='check_buildslave_host_disk_usage.py',
- description='CheckBuildslaveHostDiskUsage')
- self.Validate()
- return self
« no previous file with comments | « master/skia_master_scripts/graphite_status_push.py ('k') | master/skia_master_scripts/housekeeping_percommit_factory.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698