blob: 3a376921b5e764819a06e7ad69104f36df30d328 [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',
upload_debug_symbols_path=api.path['start_dir'].join(
'path/to/upload_debug_symbols'),
bucket='test-bucket',
build_id_dirs=[
api.path['start_dir'].join('path/to/.build-id'),
],
record='path/to/record.txt',
)
def GenTests(api):
yield api.test('basic')