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

Side by Side Diff: scripts/slave/recipes/swarming/deterministic_build.expected/full_chromium_swarm_Linux_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 "Linux deterministic build", 10 "Linux deterministic build",
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 "-u", 89 "-u",
90 "[BUILD]/scripts/slave/compile.py", 90 "[BUILD]/scripts/slave/compile.py",
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 "--clobber", 97 "--clobber",
98 "--", 98 "--",
99 "base_unittests" 99 "chrome_run"
100 ], 100 ],
101 "name": "First build" 101 "name": "First build"
102 }, 102 },
103 { 103 {
104 "cmd": [ 104 "cmd": [
105 "python", 105 "python",
106 "-u", 106 "-u",
107 "[BUILD]/scripts/slave/recipe_modules/isolate/resources/remove_build_metad ata.py", 107 "[BUILD]/scripts/slave/recipe_modules/isolate/resources/remove_build_metad ata.py",
108 "--build-dir", 108 "--build-dir",
109 "[SLAVE_BUILD]/src/out/Release", 109 "[SLAVE_BUILD]/src/out/Release",
(...skipping 29 matching lines...) Expand all
139 "-u", 139 "-u",
140 "[BUILD]/scripts/slave/compile.py", 140 "[BUILD]/scripts/slave/compile.py",
141 "--target", 141 "--target",
142 "Release", 142 "Release",
143 "--src-dir", 143 "--src-dir",
144 "[SLAVE_BUILD]/src", 144 "[SLAVE_BUILD]/src",
145 "--build-tool", 145 "--build-tool",
146 "ninja", 146 "ninja",
147 "--clobber", 147 "--clobber",
148 "--", 148 "--",
149 "base_unittests" 149 "chrome_run"
150 ], 150 ],
151 "name": "Second build" 151 "name": "Second build"
152 }, 152 },
153 { 153 {
154 "cmd": [ 154 "cmd": [
155 "python", 155 "python",
156 "-u", 156 "-u",
157 "\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])", 157 "\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])",
158 "[SLAVE_BUILD]/src/out/Release", 158 "[SLAVE_BUILD]/src/out/Release",
159 "[SLAVE_BUILD]/src/out/Release.2" 159 "[SLAVE_BUILD]/src/out/Release.2"
(...skipping 17 matching lines...) Expand all
177 "[BUILD]/scripts/slave/recipe_modules/isolate/resources/compare_build_arti facts.py", 177 "[BUILD]/scripts/slave/recipe_modules/isolate/resources/compare_build_arti facts.py",
178 "--first-build-dir", 178 "--first-build-dir",
179 "[SLAVE_BUILD]/src/out/Release.1", 179 "[SLAVE_BUILD]/src/out/Release.1",
180 "--second-build-dir", 180 "--second-build-dir",
181 "[SLAVE_BUILD]/src/out/Release.2" 181 "[SLAVE_BUILD]/src/out/Release.2"
182 ], 182 ],
183 "cwd": "[SLAVE_BUILD]", 183 "cwd": "[SLAVE_BUILD]",
184 "name": "compare_build_artifacts.py" 184 "name": "compare_build_artifacts.py"
185 } 185 }
186 ] 186 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698