diff options
author | Eric Boren <borenet@google.com> | 2018-05-04 08:59:16 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-05-04 14:59:32 +0000 |
commit | 44a68b3b3b16a745582f7df8a667f30752db0ebf (patch) | |
tree | 83c1831da0413aebebc98a2b4909f116106905f1 /infra/bots/recipe_modules/vars | |
parent | 4824ed05ac126a4de5322f93e5af821d611b974d (diff) |
[infra] Remove PDFium bot and associated recipe code
Bug: skia:7890
Change-Id: I8322b145800dc41ac59322e89804ff9356d8e767
Reviewed-on: https://skia-review.googlesource.com/125864
Reviewed-by: Ben Wagner <benjaminwagner@google.com>
Commit-Queue: Eric Boren <borenet@google.com>
Diffstat (limited to 'infra/bots/recipe_modules/vars')
3 files changed, 1 insertions, 43 deletions
diff --git a/infra/bots/recipe_modules/vars/api.py b/infra/bots/recipe_modules/vars/api.py index 29842c61d8..822635a8bb 100644 --- a/infra/bots/recipe_modules/vars/api.py +++ b/infra/bots/recipe_modules/vars/api.py @@ -70,18 +70,12 @@ class SkiaVarsApi(recipe_api.RecipeApi): # correct revision of the files from isolate. self.got_revision = self.m.properties['revision'] - # Some bots also require a checkout of PDFium; in this case we use the - # checkout of Skia obtained through DEPS in pdfium/third_party/skia. - self.need_pdfium_checkout = 'PDFium' in self.builder_name - # Some bots also require a checkout of Flutter; in this case we use the # checkout of Skia obtained through DEPS in src/third_party/skia. self.need_flutter_checkout = 'Flutter' in self.builder_name self.skia_dir = self.checkout_root.join('skia') - if self.need_pdfium_checkout: - self.skia_dir = self.checkout_root.join('pdfium', 'third_party', 'skia') - elif self.need_flutter_checkout: + if self.need_flutter_checkout: self.checkout_root = self.checkout_root.join('flutter') self.skia_dir = self.checkout_root.join('src', 'third_party', 'skia') diff --git a/infra/bots/recipe_modules/vars/examples/full.expected/Build-Debian9-GCC-x86_64-Release-PDFium.json b/infra/bots/recipe_modules/vars/examples/full.expected/Build-Debian9-GCC-x86_64-Release-PDFium.json deleted file mode 100644 index 4594f9e6b9..0000000000 --- a/infra/bots/recipe_modules/vars/examples/full.expected/Build-Debian9-GCC-x86_64-Release-PDFium.json +++ /dev/null @@ -1,35 +0,0 @@ -[ - { - "cmd": [ - "python", - "-u", - "import os\nprint os.environ.get('SWARMING_BOT_ID', '')\n" - ], - "name": "get swarming bot id", - "stdout": "/path/to/tmp/", - "~followup_annotations": [ - "@@@STEP_LOG_LINE@python.inline@import os@@@", - "@@@STEP_LOG_LINE@python.inline@print os.environ.get('SWARMING_BOT_ID', '')@@@", - "@@@STEP_LOG_END@python.inline@@@" - ] - }, - { - "cmd": [ - "python", - "-u", - "import os\nprint os.environ.get('SWARMING_TASK_ID', '')\n" - ], - "name": "get swarming task id", - "stdout": "/path/to/tmp/", - "~followup_annotations": [ - "@@@STEP_LOG_LINE@python.inline@import os@@@", - "@@@STEP_LOG_LINE@python.inline@print os.environ.get('SWARMING_TASK_ID', '')@@@", - "@@@STEP_LOG_END@python.inline@@@" - ] - }, - { - "name": "$result", - "recipe_result": null, - "status_code": 0 - } -]
\ No newline at end of file diff --git a/infra/bots/recipe_modules/vars/examples/full.py b/infra/bots/recipe_modules/vars/examples/full.py index 9e614c8a31..29c16c2f71 100644 --- a/infra/bots/recipe_modules/vars/examples/full.py +++ b/infra/bots/recipe_modules/vars/examples/full.py @@ -31,7 +31,6 @@ TEST_BUILDERS = [ 'Build-Debian9-Clang-x86_64-Release-ParentRevision', 'Build-Debian9-Clang-x86_64-Release-SKNX_NO_SIMD', 'Build-Debian9-GCC-x86_64-Release-Flutter_Android', - 'Build-Debian9-GCC-x86_64-Release-PDFium', 'Build-Mac-Clang-x86_64-Debug-CommandBuffer', 'Build-Win-Clang-x86_64-Release-Vulkan', 'Housekeeper-Weekly-RecreateSKPs', |