OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [], | 3 "cmd": [], |
4 "name": "ensure_goma" | 4 "name": "ensure_goma" |
5 }, | 5 }, |
6 { | 6 { |
7 "cmd": [ | 7 "cmd": [ |
8 "python", | 8 "python", |
9 "-u", | 9 "-u", |
10 "RECIPE_MODULE[depot_tools::cipd]/resources/bootstrap.py", | 10 "RECIPE_MODULE[depot_tools::cipd]/resources/bootstrap.py", |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 ], | 62 ], |
63 "env": { | 63 "env": { |
64 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json" | 64 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json" |
65 }, | 65 }, |
66 "name": "start_goma" | 66 "name": "start_goma" |
67 }, | 67 }, |
68 { | 68 { |
69 "cmd": [ | 69 "cmd": [ |
70 "python", | 70 "python", |
71 "-u", | 71 "-u", |
| 72 "RECIPE_MODULE[build::goma]/resources/cloudtail_utils.py", |
| 73 "--start-cloudtail", |
| 74 "--cloudtail-path", |
| 75 "/opt/infra-tools/cloudtail", |
| 76 "--log-id", |
| 77 "goma_compiler_proxy" |
| 78 ], |
| 79 "env": { |
| 80 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json" |
| 81 }, |
| 82 "name": "start cloudtail", |
| 83 "stdout": "/path/to/tmp/" |
| 84 }, |
| 85 { |
| 86 "cmd": [ |
| 87 "python", |
| 88 "-u", |
72 "[CACHE]/cipd/goma/goma_ctl.py", | 89 "[CACHE]/cipd/goma/goma_ctl.py", |
73 "stop" | 90 "stop" |
74 ], | 91 ], |
75 "env": { | 92 "env": { |
76 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json" | 93 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json" |
77 }, | 94 }, |
78 "name": "stop_goma" | 95 "name": "stop_goma" |
79 }, | 96 }, |
80 { | 97 { |
81 "cmd": [ | 98 "cmd": [ |
82 "python", | 99 "python", |
83 "-u", | 100 "-u", |
| 101 "RECIPE_MODULE[build::goma]/resources/cloudtail_utils.py", |
| 102 "--killed-pid", |
| 103 "12345" |
| 104 ], |
| 105 "name": "stop cloudtail" |
| 106 }, |
| 107 { |
| 108 "cmd": [ |
| 109 "python", |
| 110 "-u", |
84 "RECIPE_PACKAGE_REPO[build]/scripts/slave/upload_goma_logs.py", | 111 "RECIPE_PACKAGE_REPO[build]/scripts/slave/upload_goma_logs.py", |
85 "--upload-compiler-proxy-info" | 112 "--upload-compiler-proxy-info" |
86 ], | 113 ], |
87 "name": "upload_log" | 114 "name": "upload_log" |
88 }, | 115 }, |
89 { | 116 { |
90 "name": "$result", | 117 "name": "$result", |
91 "recipe_result": null, | 118 "recipe_result": null, |
92 "status_code": 0 | 119 "status_code": 0 |
93 } | 120 } |
94 ] | 121 ] |
OLD | NEW |