[
  {
    "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-alt/commit/abc123/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-alt/commit/abc123/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-alt/commit/abc123/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-alt/commit/abc123/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-alt/commit/abc123/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
  }
]