Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Side by Side Diff: scripts/slave/recipes/boringssl.expected/mac.json

Issue 1115453002: Recipes: make cwd default to slave_build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: rebase Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "[BUILD]/scripts/slave/bot_update.py", 6 "[BUILD]/scripts/slave/bot_update.py",
7 "--master", 7 "--master",
8 "client.boringssl", 8 "client.boringssl",
9 "--builder", 9 "--builder",
10 "mac", 10 "mac",
11 "--slave", 11 "--slave",
12 "slavename", 12 "slavename",
13 "--spec", 13 "--spec",
14 "cache_dir = None\nsolutions = [{'deps_file': 'util/bot/DEPS', 'managed': True, 'name': 'boringssl', 'url': 'https://boringssl.googlesource.com/boringssl. git'}]", 14 "cache_dir = None\nsolutions = [{'deps_file': 'util/bot/DEPS', 'managed': True, 'name': 'boringssl', 'url': 'https://boringssl.googlesource.com/boringssl. git'}]",
15 "--root", 15 "--root",
16 "boringssl", 16 "boringssl",
17 "--revision_mapping_file", 17 "--revision_mapping_file",
18 "{}", 18 "{}",
19 "--output_json", 19 "--output_json",
20 "/path/to/tmp/json", 20 "/path/to/tmp/json",
21 "--revision", 21 "--revision",
22 "boringssl@HEAD", 22 "boringssl@HEAD",
23 "--force" 23 "--force"
24 ], 24 ],
25 "cwd": "[SLAVE_BUILD]",
25 "name": "bot_update", 26 "name": "bot_update",
26 "~followup_annotations": [ 27 "~followup_annotations": [
27 "@@@STEP_TEXT@Some step text@@@", 28 "@@@STEP_TEXT@Some step text@@@",
28 "@@@STEP_LOG_LINE@json.output@{@@@", 29 "@@@STEP_LOG_LINE@json.output@{@@@",
29 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", 30 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@",
30 "@@@STEP_LOG_LINE@json.output@ \"patch_failure\": false, @@@", 31 "@@@STEP_LOG_LINE@json.output@ \"patch_failure\": false, @@@",
31 "@@@STEP_LOG_LINE@json.output@ \"patch_root\": \"boringssl\", @@@", 32 "@@@STEP_LOG_LINE@json.output@ \"patch_root\": \"boringssl\", @@@",
32 "@@@STEP_LOG_LINE@json.output@ \"properties\": {}, @@@", 33 "@@@STEP_LOG_LINE@json.output@ \"properties\": {}, @@@",
33 "@@@STEP_LOG_LINE@json.output@ \"root\": \"boringssl\", @@@", 34 "@@@STEP_LOG_LINE@json.output@ \"root\": \"boringssl\", @@@",
34 "@@@STEP_LOG_LINE@json.output@ \"step_text\": \"Some step text\"@@@", 35 "@@@STEP_LOG_LINE@json.output@ \"step_text\": \"Some step text\"@@@",
35 "@@@STEP_LOG_LINE@json.output@}@@@", 36 "@@@STEP_LOG_LINE@json.output@}@@@",
36 "@@@STEP_LOG_END@json.output@@@" 37 "@@@STEP_LOG_END@json.output@@@"
37 ] 38 ]
38 }, 39 },
39 { 40 {
40 "cmd": [ 41 "cmd": [
41 "python", 42 "python",
42 "-u", 43 "-u",
43 "[DEPOT_TOOLS]/gclient.py", 44 "[DEPOT_TOOLS]/gclient.py",
44 "runhooks" 45 "runhooks"
45 ], 46 ],
47 "cwd": "[SLAVE_BUILD]",
46 "name": "gclient runhooks" 48 "name": "gclient runhooks"
47 }, 49 },
48 { 50 {
49 "cmd": [ 51 "cmd": [
50 "python", 52 "python",
51 "-u", 53 "-u",
52 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", 54 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n",
53 "[SLAVE_BUILD]/boringssl/build", 55 "[SLAVE_BUILD]/boringssl/build",
54 "511" 56 "511"
55 ], 57 ],
58 "cwd": "[SLAVE_BUILD]",
56 "name": "makedirs mkdir", 59 "name": "makedirs mkdir",
57 "~followup_annotations": [ 60 "~followup_annotations": [
58 "@@@STEP_LOG_LINE@python.inline@@@@", 61 "@@@STEP_LOG_LINE@python.inline@@@@",
59 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", 62 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@",
60 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", 63 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@",
61 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", 64 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@",
62 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", 65 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@",
63 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", 66 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@",
64 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@", 67 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@",
65 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", 68 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@",
(...skipping 15 matching lines...) Expand all
81 }, 84 },
82 { 85 {
83 "cmd": [ 86 "cmd": [
84 "python", 87 "python",
85 "-u", 88 "-u",
86 "[SLAVE_BUILD]/boringssl/util/bot/go/env.py", 89 "[SLAVE_BUILD]/boringssl/util/bot/go/env.py",
87 "ninja", 90 "ninja",
88 "-C", 91 "-C",
89 "[SLAVE_BUILD]/boringssl/build" 92 "[SLAVE_BUILD]/boringssl/build"
90 ], 93 ],
94 "cwd": "[SLAVE_BUILD]",
91 "name": "ninja" 95 "name": "ninja"
92 }, 96 },
93 { 97 {
94 "cmd": [ 98 "cmd": [
95 "python", 99 "python",
96 "-u", 100 "-u",
97 "[SLAVE_BUILD]/boringssl/util/bot/go/env.py", 101 "[SLAVE_BUILD]/boringssl/util/bot/go/env.py",
98 "go", 102 "go",
99 "run", 103 "run",
100 "util/all_tests.go", 104 "util/all_tests.go",
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 "@@@STEP_LOG_LINE@test_utils.test_results@ \"actual\": \"PASS\", @@ @", 209 "@@@STEP_LOG_LINE@test_utils.test_results@ \"actual\": \"PASS\", @@ @",
206 "@@@STEP_LOG_LINE@test_utils.test_results@ \"expected\": \"PASS\"@@ @", 210 "@@@STEP_LOG_LINE@test_utils.test_results@ \"expected\": \"PASS\"@@ @",
207 "@@@STEP_LOG_LINE@test_utils.test_results@ }@@@", 211 "@@@STEP_LOG_LINE@test_utils.test_results@ }@@@",
208 "@@@STEP_LOG_LINE@test_utils.test_results@ }@@@", 212 "@@@STEP_LOG_LINE@test_utils.test_results@ }@@@",
209 "@@@STEP_LOG_LINE@test_utils.test_results@ }@@@", 213 "@@@STEP_LOG_LINE@test_utils.test_results@ }@@@",
210 "@@@STEP_LOG_LINE@test_utils.test_results@}@@@", 214 "@@@STEP_LOG_LINE@test_utils.test_results@}@@@",
211 "@@@STEP_LOG_END@test_utils.test_results@@@" 215 "@@@STEP_LOG_END@test_utils.test_results@@@"
212 ] 216 ]
213 } 217 }
214 ] 218 ]
OLDNEW
« no previous file with comments | « scripts/slave/recipes/boringssl.expected/linux_shared.json ('k') | scripts/slave/recipes/boringssl.expected/win32.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698