| 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[build::cipd]/resources/bootstrap.py", | 10 "RECIPE_MODULE[build::cipd]/resources/bootstrap.py", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 ] | 54 ] |
| 55 }, | 55 }, |
| 56 { | 56 { |
| 57 "cmd": [ | 57 "cmd": [ |
| 58 "python", | 58 "python", |
| 59 "-u", | 59 "-u", |
| 60 "[CACHE]/cipd/goma/goma_ctl.py", | 60 "[CACHE]/cipd/goma/goma_ctl.py", |
| 61 "restart" | 61 "restart" |
| 62 ], | 62 ], |
| 63 "env": { | 63 "env": { |
| 64 "GOMACTL_CRASH_REPORT_ID_FILE": "/tmp/build_data_dir/crash_report_id_file"
, |
| 65 "GOMA_DUMP_STATS_FILE": "/tmp/build_data_dir/goma_stats_proto", |
| 64 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json" | 66 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json" |
| 65 }, | 67 }, |
| 66 "name": "start_goma" | 68 "name": "start_goma" |
| 67 }, | 69 }, |
| 68 { | 70 { |
| 69 "cmd": [ | 71 "cmd": [ |
| 70 "python", | 72 "python", |
| 71 "-u", | 73 "-u", |
| 72 "[CACHE]/cipd/goma/goma_ctl.py", | 74 "[CACHE]/cipd/goma/goma_ctl.py", |
| 73 "stop" | 75 "stop" |
| 74 ], | 76 ], |
| 77 "env": { |
| 78 "GOMACTL_CRASH_REPORT_ID_FILE": "/tmp/build_data_dir/crash_report_id_file"
, |
| 79 "GOMA_DUMP_STATS_FILE": "/tmp/build_data_dir/goma_stats_proto", |
| 80 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json" |
| 81 }, |
| 75 "name": "stop_goma" | 82 "name": "stop_goma" |
| 76 }, | 83 }, |
| 77 { | 84 { |
| 85 "cmd": [ |
| 86 "python", |
| 87 "-u", |
| 88 "upload_goma_logs.py", |
| 89 "--upload-compiler-proxy-info", |
| 90 "--goma-stats-file", |
| 91 "/tmp/build_data_dir/goma_stats_proto", |
| 92 "--goma-crash-report-id-file", |
| 93 "/tmp/build_data_dir/crash_report_id_file", |
| 94 "--build-data-dir", |
| 95 "/tmp/build_data_dir" |
| 96 ], |
| 97 "name": "upload_log" |
| 98 }, |
| 99 { |
| 78 "name": "$result", | 100 "name": "$result", |
| 79 "recipe_result": null, | 101 "recipe_result": null, |
| 80 "status_code": 0 | 102 "status_code": 0 |
| 81 } | 103 } |
| 82 ] | 104 ] |
| OLD | NEW |