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

Unified Diff: scripts/slave/recipes/skia/skia.expected/Perf-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Release-Trybot.json

Issue 1128823007: Skia recipes: Move Android and ChromeOS config info in from slaves.cfg (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipes/skia/skia.expected/Perf-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Release-Trybot.json
diff --git a/scripts/slave/recipes/skia/skia.expected/Perf-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Release-Trybot.json b/scripts/slave/recipes/skia/skia.expected/Perf-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Release-Trybot.json
deleted file mode 100644
index 303827bff75e48d6cdafcad91e6dab3ae330f038..0000000000000000000000000000000000000000
--- a/scripts/slave/recipes/skia/skia.expected/Perf-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Release-Trybot.json
+++ /dev/null
@@ -1,300 +0,0 @@
-[
- {
- "cmd": [
- "git.bat",
- "fetch"
- ],
- "cwd": "[SLAVE_BUILD]\\skia",
- "name": "git fetch"
- },
- {
- "cmd": [
- "git.bat",
- "reset",
- "--hard",
- "abc123"
- ],
- "cwd": "[SLAVE_BUILD]\\skia",
- "name": "git reset"
- },
- {
- "cmd": [
- "git.bat",
- "clean",
- "-d",
- "-f"
- ],
- "cwd": "[SLAVE_BUILD]\\skia",
- "name": "git clean"
- },
- {
- "cmd": [
- "python",
- "-u",
- "[DEPOT_TOOLS]\\gclient.py",
- "config",
- "--spec",
- "cache_dir = None\nsolutions = [{'deps_file': 'DEPS', 'managed': True, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]"
- ],
- "cwd": "[SLAVE_BUILD]",
- "name": "gclient setup"
- },
- {
- "cmd": [
- "python",
- "-u",
- "[BUILD]\\scripts\\slave\\gclient_safe_revert.py",
- ".",
- "[DEPOT_TOOLS]\\gclient.bat"
- ],
- "cwd": "[SLAVE_BUILD]",
- "name": "gclient revert"
- },
- {
- "cmd": [
- "python",
- "-u",
- "[DEPOT_TOOLS]\\gclient.py",
- "sync",
- "--nohooks",
- "--force",
- "--verbose",
- "--delete_unversioned_trees",
- "--revision",
- "skia@abc123",
- "--output-json",
- "/path/to/tmp/json"
- ],
- "cwd": "[SLAVE_BUILD]",
- "name": "gclient sync",
- "~followup_annotations": [
- "@@@STEP_LOG_LINE@json.output@{@@@",
- "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@",
- "@@@STEP_LOG_LINE@json.output@ \"skia/\": {@@@",
- "@@@STEP_LOG_LINE@json.output@ \"revision\": 164710@@@",
- "@@@STEP_LOG_LINE@json.output@ }@@@",
- "@@@STEP_LOG_LINE@json.output@ }@@@",
- "@@@STEP_LOG_LINE@json.output@}@@@",
- "@@@STEP_LOG_END@json.output@@@",
- "@@@SET_BUILD_PROPERTY@got_revision@164710@@@"
- ]
- },
- {
- "cmd": [
- "python",
- "-u",
- "[DEPOT_TOOLS]\\apply_issue.py",
- "-r",
- "[SLAVE_BUILD]\\skia",
- "-i",
- "500",
- "-p",
- "1",
- "-s",
- "https://codereview.chromium.org",
- "--no-auth"
- ],
- "cwd": "[SLAVE_BUILD]",
- "name": "apply_issue",
- "~followup_annotations": [
- "@@@STEP_LINK@Applied issue 500@https://codereview.chromium.org/500@@@"
- ]
- },
- {
- "cmd": [
- "python",
- "-u",
- "\nimport os\nimport sys\nwith open(sys.argv[1], 'w') as f:\n f.write(os.path.join(os.path.expanduser('~'), 'src'))\n",
- "/path/to/tmp/"
- ],
- "cwd": "[SLAVE_BUILD]",
- "name": "get CHROME_PATH",
- "~followup_annotations": [
- "@@@STEP_LOG_LINE@python.inline@@@@",
- "@@@STEP_LOG_LINE@python.inline@import os@@@",
- "@@@STEP_LOG_LINE@python.inline@import sys@@@",
- "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@",
- "@@@STEP_LOG_LINE@python.inline@ f.write(os.path.join(os.path.expanduser('~'), 'src'))@@@",
- "@@@STEP_LOG_END@python.inline@@@"
- ]
- },
- {
- "cmd": [
- "python",
- "make.py",
- "nanobench",
- "BUILDTYPE=Release"
- ],
- "cwd": "[SLAVE_BUILD]\\skia",
- "env": {
- "CHROME_PATH": "/home/chrome-bot/src",
- "GYP_DEFINES": "qt_sdk=C:/Qt/4.8.5/ skia_arch_type=x86 skia_arch_width=32 skia_warnings_as_errors=0 skia_win_debuggers_path=c:/DbgHelp"
- },
- "name": "build nanobench"
- },
- {
- "cmd": [
- "python",
- "-u",
- "\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",
- "[SLAVE_BUILD]\\tmp",
- "511"
- ],
- "cwd": "[SLAVE_BUILD]",
- "name": "makedirs tmp_dir",
- "~followup_annotations": [
- "@@@STEP_LOG_LINE@python.inline@@@@",
- "@@@STEP_LOG_LINE@python.inline@import sys, os@@@",
- "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@",
- "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@",
- "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@",
- "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@",
- "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@",
- "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@",
- "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@",
- "@@@STEP_LOG_END@python.inline@@@"
- ]
- },
- {
- "cmd": [
- "python",
- "-u",
- "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\SKP_VERSION",
- "/path/to/tmp/"
- ],
- "cwd": "[SLAVE_BUILD]",
- "name": "Get expected SKP_VERSION"
- },
- {
- "cmd": [
- "python",
- "-u",
- "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\tmp\\SKP_VERSION",
- "/path/to/tmp/"
- ],
- "cwd": "[SLAVE_BUILD]",
- "name": "Get downloaded SKP_VERSION"
- },
- {
- "cmd": [
- "python",
- "-u",
- "\nimport os, sys\nfrom common import chromium_utils\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]\\perfdata\\Perf-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Release-Trybot\\data"
- ],
- "cwd": "[SLAVE_BUILD]",
- "name": "rmtree data",
- "~followup_annotations": [
- "@@@STEP_LOG_LINE@python.inline@@@@",
- "@@@STEP_LOG_LINE@python.inline@import os, sys@@@",
- "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils@@@",
- "@@@STEP_LOG_LINE@python.inline@@@@",
- "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@",
- "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[1])@@@",
- "@@@STEP_LOG_END@python.inline@@@"
- ]
- },
- {
- "cmd": [
- "python",
- "-u",
- "\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",
- "[SLAVE_BUILD]\\perfdata\\Perf-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Release-Trybot\\data",
- "511"
- ],
- "cwd": "[SLAVE_BUILD]",
- "name": "makedirs data",
- "~followup_annotations": [
- "@@@STEP_LOG_LINE@python.inline@@@@",
- "@@@STEP_LOG_LINE@python.inline@import sys, os@@@",
- "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@",
- "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@",
- "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@",
- "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@",
- "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@",
- "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@",
- "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@",
- "@@@STEP_LOG_END@python.inline@@@"
- ]
- },
- {
- "cmd": [
- "python",
- "-u",
- "[SLAVE_BUILD]\\skia\\tools/nanobench_flags.py",
- "/path/to/tmp/json",
- "Perf-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Release-Trybot"
- ],
- "cwd": "[SLAVE_BUILD]\\skia",
- "name": "exec nanobench_flags.py",
- "~followup_annotations": [
- "@@@STEP_LOG_LINE@json.output@[@@@",
- "@@@STEP_LOG_LINE@json.output@ \"--dummy-flags\"@@@",
- "@@@STEP_LOG_LINE@json.output@]@@@",
- "@@@STEP_LOG_END@json.output@@@"
- ]
- },
- {
- "cmd": [
- "[DEPOT_TOOLS]\\git.bat",
- "show",
- "HEAD",
- "--format=%at",
- "-s"
- ],
- "cwd": "[SLAVE_BUILD]\\skia",
- "name": "git show",
- "stdout": "/path/to/tmp/"
- },
- {
- "cmd": [
- "[SLAVE_BUILD]\\skia\\out\\Release\\nanobench",
- "--undefok",
- "-i",
- "[SLAVE_BUILD]\\skia\\resources",
- "--skps",
- "[SLAVE_BUILD]\\playback\\skps",
- "--nocpu",
- "--dummy-flags",
- "--outResultsFile",
- "[SLAVE_BUILD]\\perfdata\\Perf-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Release-Trybot\\data\\nanobench_164710_1408633190.json",
- "--properties",
- "gitHash",
- "164710",
- "build_number",
- "5",
- "--key",
- "arch",
- "x86",
- "compiler",
- "MSVC",
- "cpu_or_gpu",
- "GPU",
- "cpu_or_gpu_value",
- "HD2000",
- "model",
- "ShuttleA",
- "os",
- "Win7"
- ],
- "cwd": "[SLAVE_BUILD]",
- "name": "nanobench"
- },
- {
- "cmd": [
- "python",
- "-u",
- "RECIPE_MODULE[skia]\\resources\\upload_bench_results.py",
- "Perf-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Release-Trybot",
- "5",
- "[SLAVE_BUILD]\\perfdata\\Perf-Win7-MSVC-ShuttleA-GPU-HD2000-x86-Release-Trybot\\data",
- "164710",
- "[DEPOT_TOOLS]\\third_party\\gsutil\\gsutil",
- "500"
- ],
- "cwd": "[SLAVE_BUILD]\\skia",
- "name": "Upload Nanobench Results"
- }
-]

Powered by Google App Engine
This is Rietveld 408576698