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

Side by Side Diff: infra/bots/recipes/swarm_housekeeper.expected/Housekeeper-PerCommit.json

Issue 2209423002: [recipes] Remove build environment vars from default_env (Closed) Base URL: https://skia.googlesource.com/skia.git@merge_buildbot_spec_fix_coverage
Patch Set: [recipes] Remove build environment vars from default_env Created 4 years, 4 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 "\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", 6 "\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",
7 "[SLAVE_BUILD]/tmp", 7 "[SLAVE_BUILD]/tmp",
8 "511" 8 "511"
9 ], 9 ],
10 "name": "makedirs tmp_dir", 10 "name": "makedirs tmp_dir",
(...skipping 12 matching lines...) Expand all
23 }, 23 },
24 { 24 {
25 "cmd": [ 25 "cmd": [
26 "python", 26 "python",
27 "[SLAVE_BUILD]/skia/platform_tools/android/tests/run_all.py" 27 "[SLAVE_BUILD]/skia/platform_tools/android/tests/run_all.py"
28 ], 28 ],
29 "cwd": "[SLAVE_BUILD]/skia", 29 "cwd": "[SLAVE_BUILD]/skia",
30 "env": { 30 "env": {
31 "BUILDTYPE": "Release", 31 "BUILDTYPE": "Release",
32 "CHROME_HEADLESS": "1", 32 "CHROME_HEADLESS": "1",
33 "GYP_DEFINES": "skia_shared_lib=1 skia_warnings_as_errors=0",
34 "SKIA_OUT": "[SLAVE_BUILD]/out" 33 "SKIA_OUT": "[SLAVE_BUILD]/out"
35 }, 34 },
36 "name": "android platform self-tests" 35 "name": "android platform self-tests"
37 }, 36 },
38 { 37 {
39 "cmd": [ 38 "cmd": [
40 "python", 39 "python",
41 "RECIPE_MODULE[skia::core]/resources/generate_and_upload_doxygen.py", 40 "RECIPE_MODULE[skia::core]/resources/generate_and_upload_doxygen.py",
42 "[DEPOT_TOOLS]/third_party/gsutil/gsutil" 41 "[DEPOT_TOOLS]/third_party/gsutil/gsutil"
43 ], 42 ],
44 "cwd": "[SLAVE_BUILD]/skia", 43 "cwd": "[SLAVE_BUILD]/skia",
45 "env": { 44 "env": {
46 "BUILDTYPE": "Release", 45 "BUILDTYPE": "Release",
47 "CHROME_HEADLESS": "1", 46 "CHROME_HEADLESS": "1",
48 "GYP_DEFINES": "skia_shared_lib=1 skia_warnings_as_errors=0",
49 "SKIA_OUT": "[SLAVE_BUILD]/out" 47 "SKIA_OUT": "[SLAVE_BUILD]/out"
50 }, 48 },
51 "name": "generate and upload doxygen" 49 "name": "generate and upload doxygen"
52 }, 50 },
53 { 51 {
54 "cmd": [ 52 "cmd": [
55 "python", 53 "python",
56 "RECIPE_MODULE[skia::core]/resources/run_binary_size_analysis.py", 54 "RECIPE_MODULE[skia::core]/resources/run_binary_size_analysis.py",
57 "--library", 55 "--library",
58 "[SLAVE_BUILD]/out/Release/lib/libskia.so", 56 "[SLAVE_BUILD]/out/Release/lib/libskia.so",
59 "--githash", 57 "--githash",
60 "abc123", 58 "abc123",
61 "--gsutil_path", 59 "--gsutil_path",
62 "[DEPOT_TOOLS]/third_party/gsutil/gsutil" 60 "[DEPOT_TOOLS]/third_party/gsutil/gsutil"
63 ], 61 ],
64 "cwd": "[SLAVE_BUILD]/skia", 62 "cwd": "[SLAVE_BUILD]/skia",
65 "env": { 63 "env": {
66 "BUILDTYPE": "Release", 64 "BUILDTYPE": "Release",
67 "CHROME_HEADLESS": "1", 65 "CHROME_HEADLESS": "1",
68 "GYP_DEFINES": "skia_shared_lib=1 skia_warnings_as_errors=0",
69 "SKIA_OUT": "[SLAVE_BUILD]/out" 66 "SKIA_OUT": "[SLAVE_BUILD]/out"
70 }, 67 },
71 "name": "generate and upload binary size data" 68 "name": "generate and upload binary size data"
72 }, 69 },
73 { 70 {
74 "name": "$result", 71 "name": "$result",
75 "recipe_result": null, 72 "recipe_result": null,
76 "status_code": 0 73 "status_code": 0
77 } 74 }
78 ] 75 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698