blob: 88c376567ff311d8365bcd13b37e2854f7177c6f [file] [log] [blame]
# Copyright 2018 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
DEPS = [
'upload_debug_symbols',
'recipe_engine/path',
]
def RunSteps(api):
api.upload_debug_symbols(
step_name='upload debug symbols',
bucket='test-bucket',
build_id_dirs=[
api.path['start_dir'].join('path/to/.build-id'),
],
)
def GenTests(api):
yield api.test('basic')