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

Side by Side Diff: scripts/slave/recipes/swarming/deterministic_build.expected/full_chromium_swarm_Mac_deterministic_build.json

Issue 657863004: Deterministic recipe: Change the target to chrome_run (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 6 years, 2 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
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 "chromium.swarm", 8 "chromium.swarm",
9 "--builder", 9 "--builder",
10 "Mac deterministic build", 10 "Mac deterministic build",
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 "--target", 91 "--target",
92 "Release", 92 "Release",
93 "--src-dir", 93 "--src-dir",
94 "[SLAVE_BUILD]/src", 94 "[SLAVE_BUILD]/src",
95 "--build-tool", 95 "--build-tool",
96 "ninja", 96 "ninja",
97 "--compiler", 97 "--compiler",
98 "clang", 98 "clang",
99 "--clobber", 99 "--clobber",
100 "--", 100 "--",
101 "base_unittests" 101 "chrome_run"
102 ], 102 ],
103 "name": "First build" 103 "name": "First build"
104 }, 104 },
105 { 105 {
106 "cmd": [ 106 "cmd": [
107 "python", 107 "python",
108 "-u", 108 "-u",
109 "[BUILD]/scripts/slave/recipe_modules/isolate/resources/remove_build_metad ata.py", 109 "[BUILD]/scripts/slave/recipe_modules/isolate/resources/remove_build_metad ata.py",
110 "--build-dir", 110 "--build-dir",
111 "[SLAVE_BUILD]/src/out/Release", 111 "[SLAVE_BUILD]/src/out/Release",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 "--target", 143 "--target",
144 "Release", 144 "Release",
145 "--src-dir", 145 "--src-dir",
146 "[SLAVE_BUILD]/src", 146 "[SLAVE_BUILD]/src",
147 "--build-tool", 147 "--build-tool",
148 "ninja", 148 "ninja",
149 "--compiler", 149 "--compiler",
150 "clang", 150 "clang",
151 "--clobber", 151 "--clobber",
152 "--", 152 "--",
153 "base_unittests" 153 "chrome_run"
154 ], 154 ],
155 "name": "Second build" 155 "name": "Second build"
156 }, 156 },
157 { 157 {
158 "cmd": [ 158 "cmd": [
159 "python", 159 "python",
160 "-u", 160 "-u",
161 "\nimport os\nimport shutil\nimport sys\nif os.path.exists(sys.argv[2]):\n shutil.rmtree(sys.argv[2])\nshutil.move(sys.argv[1], sys.argv[2])", 161 "\nimport os\nimport shutil\nimport sys\nif os.path.exists(sys.argv[2]):\n shutil.rmtree(sys.argv[2])\nshutil.move(sys.argv[1], sys.argv[2])",
162 "[SLAVE_BUILD]/src/out/Release", 162 "[SLAVE_BUILD]/src/out/Release",
163 "[SLAVE_BUILD]/src/out/Release.2" 163 "[SLAVE_BUILD]/src/out/Release.2"
(...skipping 17 matching lines...) Expand all
181 "[BUILD]/scripts/slave/recipe_modules/isolate/resources/compare_build_arti facts.py", 181 "[BUILD]/scripts/slave/recipe_modules/isolate/resources/compare_build_arti facts.py",
182 "--first-build-dir", 182 "--first-build-dir",
183 "[SLAVE_BUILD]/src/out/Release.1", 183 "[SLAVE_BUILD]/src/out/Release.1",
184 "--second-build-dir", 184 "--second-build-dir",
185 "[SLAVE_BUILD]/src/out/Release.2" 185 "[SLAVE_BUILD]/src/out/Release.2"
186 ], 186 ],
187 "cwd": "[SLAVE_BUILD]", 187 "cwd": "[SLAVE_BUILD]",
188 "name": "compare_build_artifacts.py" 188 "name": "compare_build_artifacts.py"
189 } 189 }
190 ] 190 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698