Home | History | Annotate | Download | only in recipes
      1 # Copyright 2016 The Chromium Authors. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 
      6 # Recipe for uploading DM results.
      7 
      8 
      9 DEPS = [
     10   'recipe_engine/properties',
     11   'upload_dm_results',
     12 ]
     13 
     14 
     15 def RunSteps(api):
     16   api.upload_dm_results.run()
     17 
     18 
     19 def GenTests(api):
     20   yield (
     21     api.test('upload') +
     22     api.properties(buildername='Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug',
     23                    gs_bucket='skia-infra-gm',
     24                    revision='abc123',
     25                    path_config='kitchen')
     26   )
     27