Commit 8d48f3c8 authored by Scott Lee's avatar Scott Lee Committed by Chromium LUCI CQ

add result_adapter into src/tools

result_adapter is chromium-specific tool that reads the test outputs
with gtest/json format and sends them to ResultDB.

It was previously deployed to Swarming bots via pool config, but
this CL adds it to src.DEPS, so that
- swarming pool.cfg no longer have to deploy a chromium specific
cipd pkg, and
- result_adapter becomes available for local runs in dev's workstation.

Change-Id: Ifce0f243162c6aa0f76539fcda1446cfcac2f88d
Bug: 1084332
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2586748Reviewed-by: default avatarChan Li <chanli@chromium.org>
Reviewed-by: default avatarDirk Pranke <dpranke@google.com>
Commit-Queue: Scott Lee <ddoman@chromium.org>
Cr-Commit-Position: refs/heads/master@{#836818}
parent f5a171b9
......@@ -384,6 +384,9 @@ vars = {
'libcxx_revision': 'd9040c75cfea5928c804ab7c235fed06a63f743a',
'libcxxabi_revision': '196ba1aaa8ac285d94f4ea8d9836390a45360533',
'libunwind_revision': 'd999d54f4bca789543a2eb6c995af2d9b5a1f3ed',
# resultdb CIPD package version.
'resultdb_version': 'git_revision:708b8c96ec364e58a15db4a9b5b89a9c7a78bcfb',
}
# Only these hosts are allowed for dependencies in this DEPS file.
......@@ -4110,6 +4113,16 @@ deps = {
},
# === ANDROID_DEPS Generated Code End ===
'src/tools/resultdb': {
'packages': [
{
'package': 'infra/tools/result_adapter/${{platform}}',
'version': Var('resultdb_version'),
},
],
'dep_type': 'cipd',
},
}
......
/result_adapter
/result_adapter.exe
.versions
# Metadata information for this directory.
#
# For more information on DIR_METADATA files, see:
# https://source.chromium.org/chromium/infra/infra/+/master:go/src/infra/tools/dirmd/README.md
#
# For the schema of this file, see Metadata message:
# https://source.chromium.org/chromium/infra/infra/+/master:go/src/infra/tools/dirmd/proto/dir_metadata.proto
monorail {
component: "Infra>Test>Results"
}
chanli@chromium.org
ddoman@chromium.org
robertocn@chromium.org
# resultdb
Contains executable for streaming TestResults via go/result-sink
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment