blob: 92a00e28115c4e319c249ab83e264d72cb6b9db8 [file] [log] [blame]
# Copyright 2021 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 = [
"fuchsia/dpi",
"recipe_engine/path",
]
def RunSteps(api):
api.dpi.upload(
"upload",
api.path.start_dir.join("build"),
api.dpi.Options(
repo_hostname="test.fuchsia-update.googleusercontent.com",
gcs_bucket="discover-cloud.appspot.com",
manifest_path="path/to/manifest",
),
)
api.dpi.fetch(
"fetch",
api.path.start_dir.join("artifact_lock.json"),
api.path.start_dir.join("output"),
)
def GenTests(api):
yield api.test("basic")