OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "python", | 4 "python", |
5 "-u", | 5 "-u", |
6 "[SLAVE_BUILD]/skia/tools/buildbot_spec.py", | 6 "[SLAVE_BUILD]/skia/tools/buildbot_spec.py", |
7 "/path/to/tmp/json", | 7 "/path/to/tmp/json", |
8 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN" | 8 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN" |
9 ], | 9 ], |
10 "cwd": "[SLAVE_BUILD]/skia", | 10 "cwd": "[SLAVE_BUILD]/skia", |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 "[SLAVE_BUILD]/tmp/SKP_VERSION", | 53 "[SLAVE_BUILD]/tmp/SKP_VERSION", |
54 "/path/to/tmp/" | 54 "/path/to/tmp/" |
55 ], | 55 ], |
56 "name": "Get downloaded SKP_VERSION" | 56 "name": "Get downloaded SKP_VERSION" |
57 }, | 57 }, |
58 { | 58 { |
59 "cmd": [ | 59 "cmd": [ |
60 "python", | 60 "python", |
61 "-u", | 61 "-u", |
62 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 62 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
63 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION", | 63 "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION", |
64 "/path/to/tmp/" | 64 "/path/to/tmp/" |
65 ], | 65 ], |
66 "name": "Get downloaded SK_IMAGE_VERSION" | 66 "name": "Get downloaded skimage VERSION" |
67 }, | 67 }, |
68 { | 68 { |
69 "cmd": [ | 69 "cmd": [ |
| 70 "python", |
| 71 "-u", |
| 72 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 73 "42", |
| 74 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION" |
| 75 ], |
| 76 "name": "write SK_IMAGE_VERSION" |
| 77 }, |
| 78 { |
| 79 "cmd": [ |
70 "[SLAVE_BUILD]/out/Debug/dm", | 80 "[SLAVE_BUILD]/out/Debug/dm", |
71 "--undefok", | 81 "--undefok", |
72 "--resourcePath", | 82 "--resourcePath", |
73 "[SLAVE_BUILD]/skia/resources", | 83 "[SLAVE_BUILD]/skia/resources", |
74 "--skps", | 84 "--skps", |
75 "[SLAVE_BUILD]/skps", | 85 "[SLAVE_BUILD]/skps", |
76 "--images", | 86 "--images", |
77 "[SLAVE_BUILD]/images/dm", | 87 "[SLAVE_BUILD]/skimage/dm", |
78 "--nameByHash", | 88 "--nameByHash", |
79 "--properties", | 89 "--properties", |
80 "gitHash", | 90 "gitHash", |
81 "abc123", | 91 "abc123", |
82 "master", | 92 "master", |
83 "client.skia", | 93 "client.skia", |
84 "builder", | 94 "builder", |
85 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN", | 95 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN", |
86 "build_number", | 96 "build_number", |
87 "5", | 97 "5", |
88 "--colorImages", | 98 "--colorImages", |
89 "[SLAVE_BUILD]/images/colorspace", | 99 "[SLAVE_BUILD]/skimage/colorspace", |
90 "--key", | 100 "--key", |
91 "arch", | 101 "arch", |
92 "x86_64", | 102 "x86_64", |
93 "compiler", | 103 "compiler", |
94 "GCC", | 104 "GCC", |
95 "configuration", | 105 "configuration", |
96 "Debug", | 106 "Debug", |
97 "cpu_or_gpu", | 107 "cpu_or_gpu", |
98 "CPU", | 108 "CPU", |
99 "cpu_or_gpu_value", | 109 "cpu_or_gpu_value", |
(...skipping 21 matching lines...) Expand all Loading... |
121 "UBSAN_OPTIONS": "suppressions=[SLAVE_BUILD]/skia/tools/ubsan.supp" | 131 "UBSAN_OPTIONS": "suppressions=[SLAVE_BUILD]/skia/tools/ubsan.supp" |
122 }, | 132 }, |
123 "name": "dm" | 133 "name": "dm" |
124 }, | 134 }, |
125 { | 135 { |
126 "name": "$result", | 136 "name": "$result", |
127 "recipe_result": null, | 137 "recipe_result": null, |
128 "status_code": 0 | 138 "status_code": 0 |
129 } | 139 } |
130 ] | 140 ] |
OLD | NEW |