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]/skia/infra/bots/assets/skimage/VERSION", | 63 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION", |
64 "/path/to/tmp/" | 64 "/path/to/tmp/" |
65 ], | 65 ], |
66 "name": "Get downloaded skimage VERSION" | 66 "name": "Get downloaded SK_IMAGE_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": [ | |
80 "[SLAVE_BUILD]/out/Debug/dm", | 70 "[SLAVE_BUILD]/out/Debug/dm", |
81 "--undefok", | 71 "--undefok", |
82 "--resourcePath", | 72 "--resourcePath", |
83 "[SLAVE_BUILD]/skia/resources", | 73 "[SLAVE_BUILD]/skia/resources", |
84 "--skps", | 74 "--skps", |
85 "[SLAVE_BUILD]/skps", | 75 "[SLAVE_BUILD]/skps", |
86 "--images", | 76 "--images", |
87 "[SLAVE_BUILD]/skimage/dm", | 77 "[SLAVE_BUILD]/images/dm", |
88 "--nameByHash", | 78 "--nameByHash", |
89 "--properties", | 79 "--properties", |
90 "gitHash", | 80 "gitHash", |
91 "abc123", | 81 "abc123", |
92 "master", | 82 "master", |
93 "client.skia", | 83 "client.skia", |
94 "builder", | 84 "builder", |
95 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN", | 85 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN", |
96 "build_number", | 86 "build_number", |
97 "5", | 87 "5", |
98 "--colorImages", | 88 "--colorImages", |
99 "[SLAVE_BUILD]/skimage/colorspace", | 89 "[SLAVE_BUILD]/images/colorspace", |
100 "--key", | 90 "--key", |
101 "arch", | 91 "arch", |
102 "x86_64", | 92 "x86_64", |
103 "compiler", | 93 "compiler", |
104 "GCC", | 94 "GCC", |
105 "configuration", | 95 "configuration", |
106 "Debug", | 96 "Debug", |
107 "cpu_or_gpu", | 97 "cpu_or_gpu", |
108 "CPU", | 98 "CPU", |
109 "cpu_or_gpu_value", | 99 "cpu_or_gpu_value", |
(...skipping 21 matching lines...) Expand all Loading... |
131 "UBSAN_OPTIONS": "suppressions=[SLAVE_BUILD]/skia/tools/ubsan.supp" | 121 "UBSAN_OPTIONS": "suppressions=[SLAVE_BUILD]/skia/tools/ubsan.supp" |
132 }, | 122 }, |
133 "name": "dm" | 123 "name": "dm" |
134 }, | 124 }, |
135 { | 125 { |
136 "name": "$result", | 126 "name": "$result", |
137 "recipe_result": null, | 127 "recipe_result": null, |
138 "status_code": 0 | 128 "status_code": 0 |
139 } | 129 } |
140 ] | 130 ] |
OLD | NEW |