1[ 2 { 3 "cmd": [ 4 "python", 5 "-u", 6 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", 7 "--json-output", 8 "/path/to/tmp/json", 9 "ensure-directory", 10 "--mode", 11 "0777", 12 "[START_DIR]/tmp" 13 ], 14 "infra_step": true, 15 "name": "makedirs tmp_dir" 16 }, 17 { 18 "cmd": [ 19 "python", 20 "-u", 21 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", 22 "--json-output", 23 "/path/to/tmp/json", 24 "copy", 25 "[START_DIR]/skia/infra/bots/assets/skp/VERSION", 26 "/path/to/tmp/" 27 ], 28 "infra_step": true, 29 "name": "Get skp VERSION" 30 }, 31 { 32 "cmd": [ 33 "python", 34 "-u", 35 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", 36 "--json-output", 37 "/path/to/tmp/json", 38 "copy", 39 "42", 40 "[START_DIR]/tmp/SKP_VERSION" 41 ], 42 "infra_step": true, 43 "name": "write SKP_VERSION" 44 }, 45 { 46 "cmd": [ 47 "python", 48 "-u", 49 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", 50 "--json-output", 51 "/path/to/tmp/json", 52 "copy", 53 "[START_DIR]/skia/infra/bots/assets/svg/VERSION", 54 "/path/to/tmp/" 55 ], 56 "infra_step": true, 57 "name": "Get svg VERSION" 58 }, 59 { 60 "cmd": [ 61 "python", 62 "-u", 63 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", 64 "--json-output", 65 "/path/to/tmp/json", 66 "copy", 67 "42", 68 "[START_DIR]/tmp/SVG_VERSION" 69 ], 70 "infra_step": true, 71 "name": "write SVG_VERSION" 72 }, 73 { 74 "cmd": [ 75 "python", 76 "-u", 77 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", 78 "--json-output", 79 "/path/to/tmp/json", 80 "ensure-directory", 81 "--mode", 82 "0777", 83 "[START_DIR]/[SWARM_OUT_DIR]" 84 ], 85 "infra_step": true, 86 "name": "makedirs perf" 87 }, 88 { 89 "cmd": [ 90 "python", 91 "[START_DIR]/skia/tools/calmbench/ab.py", 92 "[START_DIR]/[SWARM_OUT_DIR]", 93 "modified", 94 "master", 95 "[START_DIR]/build/nanobench", 96 "[START_DIR]/build/ParentRevision/nanobench", 97 "--svgs [START_DIR]/svg --skps [START_DIR]/skp", 98 "--svgs [START_DIR]/svg --skps [START_DIR]/skp", 99 "2", 100 "false", 101 "gl", 102 "-1", 103 "false", 104 "--githash", 105 "abc123", 106 "--concise", 107 "--keys", 108 "arch", 109 "x86_64", 110 "compiler", 111 "Clang", 112 "cpu_or_gpu", 113 "GPU", 114 "cpu_or_gpu_value", 115 "QuadroP400", 116 "model", 117 "Golo", 118 "os", 119 "Ubuntu17" 120 ], 121 "cwd": "[START_DIR]/skia", 122 "env": { 123 "CHROME_HEADLESS": "1", 124 "PATH": "<PATH>:RECIPE_REPO[depot_tools]" 125 }, 126 "name": "Run calmbench" 127 }, 128 { 129 "jsonResult": null, 130 "name": "$result" 131 } 132]