32f318bad4
Bug: skia: Change-Id: I28d28f514b46ad0c30109beba90ae8a1bd8fc4e3 Reviewed-on: https://skia-review.googlesource.com/59961 Reviewed-by: Eric Boren <borenet@google.com> Commit-Queue: Kevin Lubick <kjlubick@google.com>
143 lines
3.2 KiB
JSON
143 lines
3.2 KiB
JSON
[
|
|
{
|
|
"cmd": [
|
|
"python",
|
|
"-u",
|
|
"RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py",
|
|
"--json-output",
|
|
"/path/to/tmp/json",
|
|
"glob",
|
|
"[START_DIR]",
|
|
"*.profraw"
|
|
],
|
|
"infra_step": true,
|
|
"name": "find raw inputs",
|
|
"stdout": "/path/to/tmp/",
|
|
"~followup_annotations": [
|
|
"@@@STEP_LOG_LINE@glob@[START_DIR]/a.raw@@@",
|
|
"@@@STEP_LOG_LINE@glob@[START_DIR]/b.raw@@@",
|
|
"@@@STEP_LOG_LINE@glob@[START_DIR]/c.raw@@@",
|
|
"@@@STEP_LOG_END@glob@@@"
|
|
]
|
|
},
|
|
{
|
|
"cmd": [
|
|
"tar",
|
|
"-zcvf",
|
|
"[START_DIR]/raw_data.profraw.tar.gz",
|
|
"[START_DIR]/a.raw",
|
|
"[START_DIR]/b.raw",
|
|
"[START_DIR]/c.raw"
|
|
],
|
|
"name": "create raw data archive"
|
|
},
|
|
{
|
|
"cmd": [
|
|
"gsutil",
|
|
"cp",
|
|
"[START_DIR]/raw_data.profraw.tar.gz",
|
|
"gs://skia-coverage/trybot/456789/12/Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All.profraw.tar.gz"
|
|
],
|
|
"name": "upload raw data archive"
|
|
},
|
|
{
|
|
"cmd": [
|
|
"[START_DIR]/clang_linux/bin/llvm-profdata",
|
|
"merge",
|
|
"-sparse",
|
|
"-o",
|
|
"[START_DIR]/output.profdata",
|
|
"[START_DIR]/a.raw",
|
|
"[START_DIR]/b.raw",
|
|
"[START_DIR]/c.raw"
|
|
],
|
|
"name": "merge and index"
|
|
},
|
|
{
|
|
"cmd": [
|
|
"gsutil",
|
|
"cp",
|
|
"-Z",
|
|
"[START_DIR]/output.profdata",
|
|
"gs://skia-coverage/trybot/456789/12/Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All.profdata"
|
|
],
|
|
"name": "upload parsed data"
|
|
},
|
|
{
|
|
"cmd": [
|
|
"[START_DIR]/clang_linux/bin/llvm-cov",
|
|
"show",
|
|
"[START_DIR]/out/Debug/dm",
|
|
"-instr-profile=[START_DIR]/output.profdata",
|
|
"-use-color=0",
|
|
"-format=text",
|
|
"-output-dir=[START_DIR]/coverage_text"
|
|
],
|
|
"name": "create text summary"
|
|
},
|
|
{
|
|
"cmd": [
|
|
"gsutil",
|
|
"cp",
|
|
"-Z",
|
|
"[START_DIR]/coverage_text/index.txt",
|
|
"gs://skia-coverage/trybot/456789/12/Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All.summary"
|
|
],
|
|
"name": "upload coverage summary"
|
|
},
|
|
{
|
|
"cmd": [
|
|
"tar",
|
|
"-cvf",
|
|
"[START_DIR]/coverage.text.tar",
|
|
"[START_DIR]/coverage_text"
|
|
],
|
|
"name": "create text coverage archive"
|
|
},
|
|
{
|
|
"cmd": [
|
|
"gsutil",
|
|
"cp",
|
|
"-Z",
|
|
"[START_DIR]/coverage.text.tar",
|
|
"gs://skia-coverage/trybot/456789/12/Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All.text.tar"
|
|
],
|
|
"name": "upload text coverage data"
|
|
},
|
|
{
|
|
"cmd": [
|
|
"[START_DIR]/clang_linux/bin/llvm-cov",
|
|
"show",
|
|
"[START_DIR]/out/Debug/dm",
|
|
"-instr-profile=[START_DIR]/output.profdata",
|
|
"-use-color=1",
|
|
"-format=html",
|
|
"-output-dir=[START_DIR]/coverage_html"
|
|
],
|
|
"name": "create html summary"
|
|
},
|
|
{
|
|
"cmd": [
|
|
"tar",
|
|
"-cvf",
|
|
"[START_DIR]/coverage.html.tar",
|
|
"[START_DIR]/coverage_html"
|
|
],
|
|
"name": "create html coverage archive"
|
|
},
|
|
{
|
|
"cmd": [
|
|
"gsutil",
|
|
"cp",
|
|
"-Z",
|
|
"[START_DIR]/coverage.html.tar",
|
|
"gs://skia-coverage/trybot/456789/12/Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All.html.tar"
|
|
],
|
|
"name": "upload html coverage data"
|
|
},
|
|
{
|
|
"name": "$result",
|
|
"recipe_result": null,
|
|
"status_code": 0
|
|
}
|
|
] |