diff options
68 files changed, 0 insertions, 3121 deletions
diff --git a/infra/bots/recipe_modules/core/api.py b/infra/bots/recipe_modules/core/api.py index 747416468a..430fa023ca 100644 --- a/infra/bots/recipe_modules/core/api.py +++ b/infra/bots/recipe_modules/core/api.py @@ -33,28 +33,6 @@ class SkiaApi(recipe_api.RecipeApi): self.m.flavor.setup() - def update_repo(self, parent_dir, repo): - """Update an existing repo. This is safe to call without gen_steps.""" - repo_path = parent_dir.join(repo.name) - if self.m.path.exists(repo_path) or self._test_data.enabled: - if 'Win' in self.m.properties.get('buildername', ''): - git = 'git.bat' - else: - git = 'git' - with self.m.context(cwd=repo_path): - self.m.step('git remote set-url', - cmd=[git, 'remote', 'set-url', 'origin', repo.url], - infra_step=True) - self.m.step('git fetch', - cmd=[git, 'fetch'], - infra_step=True) - self.m.step('git reset', - cmd=[git, 'reset', '--hard', repo.revision], - infra_step=True) - self.m.step('git clean', - cmd=[git, 'clean', '-d', '-f'], - infra_step=True) - def checkout_steps(self): """Run the steps to obtain a checkout of Skia.""" cfg_kwargs = {} @@ -129,8 +107,6 @@ class SkiaApi(recipe_api.RecipeApi): patch_repo = 'https://skia.googlesource.com/skia.git' patch_root = skia_dep_path - self.update_repo(self.m.vars.checkout_root, main) - # TODO(rmistry): Remove the below block after there is a solution for # crbug.com/616443 entries_file = self.m.vars.checkout_root.join('.gclient_entries') @@ -145,7 +121,6 @@ class SkiaApi(recipe_api.RecipeApi): chromium.managed = False chromium.url = 'https://chromium.googlesource.com/chromium/src.git' chromium.revision = 'origin/lkgr' - self.update_repo(self.m.vars.checkout_root, chromium) # Run bot_update. diff --git a/infra/bots/recipe_modules/core/example.expected/Housekeeper-Weekly-RecreateSKPs.json b/infra/bots/recipe_modules/core/example.expected/Housekeeper-Weekly-RecreateSKPs.json index e4a782f13f..55ffdf2ab9 100644 --- a/infra/bots/recipe_modules/core/example.expected/Housekeeper-Weekly-RecreateSKPs.json +++ b/infra/bots/recipe_modules/core/example.expected/Housekeeper-Weekly-RecreateSKPs.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", @@ -84,49 +41,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://chromium.googlesource.com/chromium/src.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git remote set-url (2)" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git fetch (2)" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "origin/lkgr" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git reset (2)" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git clean (2)" - }, - { - "cmd": [ "python", "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", diff --git a/infra/bots/recipe_modules/core/example.expected/cross_repo_trybot.json b/infra/bots/recipe_modules/core/example.expected/cross_repo_trybot.json index 13b001c1ca..39c5a1a9e4 100644 --- a/infra/bots/recipe_modules/core/example.expected/cross_repo_trybot.json +++ b/infra/bots/recipe_modules/core/example.expected/cross_repo_trybot.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/parent_repo.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/parent_repo", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/parent_repo", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/parent_repo", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/parent_repo", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipe_modules/core/example.expected/flutter_trybot.json b/infra/bots/recipe_modules/core/example.expected/flutter_trybot.json index c0959b8ca1..8d98915477 100644 --- a/infra/bots/recipe_modules/core/example.expected/flutter_trybot.json +++ b/infra/bots/recipe_modules/core/example.expected/flutter_trybot.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://github.com/flutter/engine.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src/flutter", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src/flutter", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "origin/master" - ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src/flutter", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src/flutter", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipe_modules/core/example.expected/pdfium_trybot.json b/infra/bots/recipe_modules/core/example.expected/pdfium_trybot.json index bd00b5de32..391ca42f7d 100644 --- a/infra/bots/recipe_modules/core/example.expected/pdfium_trybot.json +++ b/infra/bots/recipe_modules/core/example.expected/pdfium_trybot.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://pdfium.googlesource.com/pdfium.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "origin/master" - ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipe_modules/core/example.expected/test.json b/infra/bots/recipe_modules/core/example.expected/test.json index 27df56e0ac..ce5da66945 100644 --- a/infra/bots/recipe_modules/core/example.expected/test.json +++ b/infra/bots/recipe_modules/core/example.expected/test.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git.bat", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git.bat", - "fetch" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git.bat", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git.bat", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Mac-Clang-arm64-Debug-Android.json b/infra/bots/recipes/compile.expected/Build-Mac-Clang-arm64-Debug-Android.json index 7293401877..c20f8abef2 100644 --- a/infra/bots/recipes/compile.expected/Build-Mac-Clang-arm64-Debug-Android.json +++ b/infra/bots/recipes/compile.expected/Build-Mac-Clang-arm64-Debug-Android.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Mac-Clang-arm64-Debug-iOS.json b/infra/bots/recipes/compile.expected/Build-Mac-Clang-arm64-Debug-iOS.json index c94ed9c264..570f56e839 100644 --- a/infra/bots/recipes/compile.expected/Build-Mac-Clang-arm64-Debug-iOS.json +++ b/infra/bots/recipes/compile.expected/Build-Mac-Clang-arm64-Debug-iOS.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Mac-Clang-x64-Release-iOS.json b/infra/bots/recipes/compile.expected/Build-Mac-Clang-x64-Release-iOS.json index 9a458f11e2..0b8db425fb 100644 --- a/infra/bots/recipes/compile.expected/Build-Mac-Clang-x64-Release-iOS.json +++ b/infra/bots/recipes/compile.expected/Build-Mac-Clang-x64-Release-iOS.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Debug-CommandBuffer.json b/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Debug-CommandBuffer.json index 9615e5b998..c7f5bcba81 100644 --- a/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Debug-CommandBuffer.json +++ b/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Debug-CommandBuffer.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", @@ -84,49 +41,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://chromium.googlesource.com/chromium/src.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git remote set-url (2)" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git fetch (2)" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "origin/lkgr" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git reset (2)" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git clean (2)" - }, - { - "cmd": [ "python", "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", diff --git a/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Release.json b/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Release.json index 304a34033d..976a236689 100644 --- a/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Release.json +++ b/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Release.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-arm-Release-Chromebook_C100p.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-arm-Release-Chromebook_C100p.json index 17ae968f43..c5c78834d9 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-arm-Release-Chromebook_C100p.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-arm-Release-Chromebook_C100p.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-arm64-Debug-Android_FrameworkDefs.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-arm64-Debug-Android_FrameworkDefs.json index d7c73a6562..fe9d6f95ba 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-arm64-Debug-Android_FrameworkDefs.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-arm64-Debug-Android_FrameworkDefs.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-arm64-Release-Android.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-arm64-Release-Android.json index 7a71b527be..6cab3c0833 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-arm64-Release-Android.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-arm64-Release-Android.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-arm64-Release-Android_Vulkan.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-arm64-Release-Android_Vulkan.json index f8e0186e1d..31061f860c 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-arm64-Release-Android_Vulkan.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-arm64-Release-Android_Vulkan.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-mipsel-Debug-Android.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-mipsel-Debug-Android.json index 61d25b563f..78b43fd968 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-mipsel-Debug-Android.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-mipsel-Debug-Android.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Debug-ASAN.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Debug-ASAN.json index f861b3d1ba..c96660b4c4 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Debug-ASAN.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Debug-ASAN.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Debug-MSAN.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Debug-MSAN.json index 22edba7b8e..df4807dda8 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Debug-MSAN.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Debug-MSAN.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Debug.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Debug.json index 31f8575d85..2b36c7193e 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Debug.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Debug.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Release-Mini.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Release-Mini.json index e79a6f670a..0f06f4d1f9 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Release-Mini.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Release-Mini.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Release-Vulkan.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Release-Vulkan.json index 9187103981..e51c81e40d 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Release-Vulkan.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-Clang-x86_64-Release-Vulkan.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-arm-Release-Chromecast.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-arm-Release-Chromecast.json index 619e3f001c..9962cd695a 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-arm-Release-Chromecast.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-arm-Release-Chromecast.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86-Debug.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86-Debug.json index ccce3c22f7..387b98d83a 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86-Debug.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86-Debug.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Debug-GN.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Debug-GN.json index 34f36e36fc..d43ce56df2 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Debug-GN.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Debug-GN.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Debug-MSAN.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Debug-MSAN.json index 4cb322286d..4f32e62df3 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Debug-MSAN.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Debug-MSAN.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Debug-NoGPU.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Debug-NoGPU.json index df5727e3d1..4c76864ea2 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Debug-NoGPU.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Debug-NoGPU.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json index eed442daa3..d2d9144ed5 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-ANGLE.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-ANGLE.json index 1c220ea3e0..1904e1326e 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-ANGLE.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-ANGLE.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-Fast.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-Fast.json index 78da5dad81..a18f6178db 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-Fast.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-Fast.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-Flutter_Android.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-Flutter_Android.json index a3b167b1e2..ac49433957 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-Flutter_Android.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-Flutter_Android.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://github.com/flutter/engine.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src/flutter", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src/flutter", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "origin/master" - ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src/flutter", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src/flutter", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-Mesa.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-Mesa.json index 0b5b882265..dda121345f 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-Mesa.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-Mesa.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-PDFium.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-PDFium.json index c63da38310..ff708d2738 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-PDFium.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-PDFium.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://pdfium.googlesource.com/pdfium.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "origin/master" - ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-PDFium_SkiaPaths.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-PDFium_SkiaPaths.json index 9cf503c6f2..9732cebd04 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-PDFium_SkiaPaths.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-PDFium_SkiaPaths.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://pdfium.googlesource.com/pdfium.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "origin/master" - ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-Shared.json b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-Shared.json index e9ef46c576..f15e0e3a67 100644 --- a/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-Shared.json +++ b/infra/bots/recipes/compile.expected/Build-Ubuntu-GCC-x86_64-Release-Shared.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Win-Clang-arm64-Release-Android.json b/infra/bots/recipes/compile.expected/Build-Win-Clang-arm64-Release-Android.json index e9ab52167a..e32c18580d 100644 --- a/infra/bots/recipes/compile.expected/Build-Win-Clang-arm64-Release-Android.json +++ b/infra/bots/recipes/compile.expected/Build-Win-Clang-arm64-Release-Android.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git.bat", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git.bat", - "fetch" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git.bat", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git.bat", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Debug-ANGLE.json b/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Debug-ANGLE.json index 2dfe6ff199..47a20f0235 100644 --- a/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Debug-ANGLE.json +++ b/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Debug-ANGLE.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git.bat", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git.bat", - "fetch" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git.bat", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git.bat", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Debug-Exceptions.json b/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Debug-Exceptions.json index 9e0c0474ff..52fd37af5a 100644 --- a/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Debug-Exceptions.json +++ b/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Debug-Exceptions.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git.bat", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git.bat", - "fetch" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git.bat", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git.bat", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Debug.json b/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Debug.json index 603bc1551e..e67cb52e80 100644 --- a/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Debug.json +++ b/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Debug.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git.bat", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git.bat", - "fetch" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git.bat", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git.bat", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Release-GDI.json b/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Release-GDI.json index e1e7b0db88..fd8b6363d7 100644 --- a/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Release-GDI.json +++ b/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Release-GDI.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git.bat", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git.bat", - "fetch" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git.bat", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git.bat", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Release-GN.json b/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Release-GN.json index e5ad1ddf5e..72d5b055cd 100644 --- a/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Release-GN.json +++ b/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Release-GN.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git.bat", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git.bat", - "fetch" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git.bat", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git.bat", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86_64-Release-Vulkan.json b/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86_64-Release-Vulkan.json index b5313d5027..f73c25f99e 100644 --- a/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86_64-Release-Vulkan.json +++ b/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86_64-Release-Vulkan.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git.bat", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git.bat", - "fetch" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git.bat", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git.bat", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]\\skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/alternate_repo.json b/infra/bots/recipes/compile.expected/alternate_repo.json index ca041e6ae8..2d745ca2dc 100644 --- a/infra/bots/recipes/compile.expected/alternate_repo.json +++ b/infra/bots/recipes/compile.expected/alternate_repo.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git.bat", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/other_repo.git" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]/other_repo", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git.bat", - "fetch" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]/other_repo", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git.bat", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]/other_repo", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git.bat", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]/other_repo", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/flutter_trybot.json b/infra/bots/recipes/compile.expected/flutter_trybot.json index c6d1556ea8..ca6f3550e6 100644 --- a/infra/bots/recipes/compile.expected/flutter_trybot.json +++ b/infra/bots/recipes/compile.expected/flutter_trybot.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://github.com/flutter/engine.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src/flutter", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src/flutter", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "origin/master" - ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src/flutter", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/flutter/src/flutter", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/pdfium_trybot.json b/infra/bots/recipes/compile.expected/pdfium_trybot.json index a329e9e693..d62a7d9463 100644 --- a/infra/bots/recipes/compile.expected/pdfium_trybot.json +++ b/infra/bots/recipes/compile.expected/pdfium_trybot.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://pdfium.googlesource.com/pdfium.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "origin/master" - ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/pdfium", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/compile.expected/trybot.json b/infra/bots/recipes/compile.expected/trybot.json index 60ce8016af..a02c978ebf 100644 --- a/infra/bots/recipes/compile.expected/trybot.json +++ b/infra/bots/recipes/compile.expected/trybot.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git.bat", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git.bat", - "fetch" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git.bat", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git.bat", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_C:\\_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/ct_skps.expected/CT_CPU_BENCH_10k_SKPs.json b/infra/bots/recipes/ct_skps.expected/CT_CPU_BENCH_10k_SKPs.json index d62f0b2917..7020b44192 100644 --- a/infra/bots/recipes/ct_skps.expected/CT_CPU_BENCH_10k_SKPs.json +++ b/infra/bots/recipes/ct_skps.expected/CT_CPU_BENCH_10k_SKPs.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/ct_skps.expected/CT_DM_100k_SKPs.json b/infra/bots/recipes/ct_skps.expected/CT_DM_100k_SKPs.json index 0caff8ace4..0f6a895cc3 100644 --- a/infra/bots/recipes/ct_skps.expected/CT_DM_100k_SKPs.json +++ b/infra/bots/recipes/ct_skps.expected/CT_DM_100k_SKPs.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/ct_skps.expected/CT_DM_10k_SKPs.json b/infra/bots/recipes/ct_skps.expected/CT_DM_10k_SKPs.json index 5ffb959111..052df8159c 100644 --- a/infra/bots/recipes/ct_skps.expected/CT_DM_10k_SKPs.json +++ b/infra/bots/recipes/ct_skps.expected/CT_DM_10k_SKPs.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/ct_skps.expected/CT_DM_10k_SKPs_Trybot.json b/infra/bots/recipes/ct_skps.expected/CT_DM_10k_SKPs_Trybot.json index bacae6b738..37ceb7f502 100644 --- a/infra/bots/recipes/ct_skps.expected/CT_DM_10k_SKPs_Trybot.json +++ b/infra/bots/recipes/ct_skps.expected/CT_DM_10k_SKPs_Trybot.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "origin/master" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/ct_skps.expected/CT_DM_1m_SKPs.json b/infra/bots/recipes/ct_skps.expected/CT_DM_1m_SKPs.json index b8fbea7687..d4d24bd76d 100644 --- a/infra/bots/recipes/ct_skps.expected/CT_DM_1m_SKPs.json +++ b/infra/bots/recipes/ct_skps.expected/CT_DM_1m_SKPs.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/ct_skps.expected/CT_DM_1m_SKPs_2slaves_failure.json b/infra/bots/recipes/ct_skps.expected/CT_DM_1m_SKPs_2slaves_failure.json index f7c3b602ff..b2f40ee79c 100644 --- a/infra/bots/recipes/ct_skps.expected/CT_DM_1m_SKPs_2slaves_failure.json +++ b/infra/bots/recipes/ct_skps.expected/CT_DM_1m_SKPs_2slaves_failure.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/ct_skps.expected/CT_DM_1m_SKPs_slave3_failure.json b/infra/bots/recipes/ct_skps.expected/CT_DM_1m_SKPs_slave3_failure.json index 8661cfa235..a3465d748a 100644 --- a/infra/bots/recipes/ct_skps.expected/CT_DM_1m_SKPs_slave3_failure.json +++ b/infra/bots/recipes/ct_skps.expected/CT_DM_1m_SKPs_slave3_failure.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_10k_SKPs.json b/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_10k_SKPs.json index 23a4543681..8dbff65215 100644 --- a/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_10k_SKPs.json +++ b/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_10k_SKPs.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_1k_SKPs.json b/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_1k_SKPs.json index 4dabf0621d..1606ca2c15 100644 --- a/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_1k_SKPs.json +++ b/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_1k_SKPs.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/ct_skps.expected/CT_IMG_DECODE_100k_SKPs.json b/infra/bots/recipes/ct_skps.expected/CT_IMG_DECODE_100k_SKPs.json index a7e54e9277..49dac5ddb0 100644 --- a/infra/bots/recipes/ct_skps.expected/CT_IMG_DECODE_100k_SKPs.json +++ b/infra/bots/recipes/ct_skps.expected/CT_IMG_DECODE_100k_SKPs.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/ct_skps.expected/CT_IMG_DECODE_10k_SKPs.json b/infra/bots/recipes/ct_skps.expected/CT_IMG_DECODE_10k_SKPs.json index 6deaabf64e..c1e4a791bf 100644 --- a/infra/bots/recipes/ct_skps.expected/CT_IMG_DECODE_10k_SKPs.json +++ b/infra/bots/recipes/ct_skps.expected/CT_IMG_DECODE_10k_SKPs.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/ct_skps.expected/CT_IMG_DECODE_10k_SKPs_Trybot.json b/infra/bots/recipes/ct_skps.expected/CT_IMG_DECODE_10k_SKPs_Trybot.json index 3514081546..628ddb0500 100644 --- a/infra/bots/recipes/ct_skps.expected/CT_IMG_DECODE_10k_SKPs_Trybot.json +++ b/infra/bots/recipes/ct_skps.expected/CT_IMG_DECODE_10k_SKPs_Trybot.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit-Trybot.json b/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit-Trybot.json index 2ec7cdff8b..5d1bc369fb 100644 --- a/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit-Trybot.json +++ b/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit-Trybot.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit.json b/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit.json index bfdf90a1a0..bee1dcb971 100644 --- a/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit.json +++ b/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/infra.expected/failed_all_updates.json b/infra/bots/recipes/infra.expected/failed_all_updates.json index f010ebe4f9..63a6bc3d13 100644 --- a/infra/bots/recipes/infra.expected/failed_all_updates.json +++ b/infra/bots/recipes/infra.expected/failed_all_updates.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/infra.expected/failed_one_update.json b/infra/bots/recipes/infra.expected/failed_one_update.json index 91b27586f5..3610466d1e 100644 --- a/infra/bots/recipes/infra.expected/failed_one_update.json +++ b/infra/bots/recipes/infra.expected/failed_one_update.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/infra.expected/infra_tests.json b/infra/bots/recipes/infra.expected/infra_tests.json index 168f22485e..d73feb30ae 100644 --- a/infra/bots/recipes/infra.expected/infra_tests.json +++ b/infra/bots/recipes/infra.expected/infra_tests.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/recreate_skps.expected/Housekeeper-Nightly-RecreateSKPs_Canary.json b/infra/bots/recipes/recreate_skps.expected/Housekeeper-Nightly-RecreateSKPs_Canary.json index 340f802ab7..07618c207b 100644 --- a/infra/bots/recipes/recreate_skps.expected/Housekeeper-Nightly-RecreateSKPs_Canary.json +++ b/infra/bots/recipes/recreate_skps.expected/Housekeeper-Nightly-RecreateSKPs_Canary.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", @@ -84,49 +41,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://chromium.googlesource.com/chromium/src.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git remote set-url (2)" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git fetch (2)" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "origin/lkgr" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git reset (2)" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git clean (2)" - }, - { - "cmd": [ "python", "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", diff --git a/infra/bots/recipes/recreate_skps.expected/Housekeeper-Weekly-RecreateSKPs.json b/infra/bots/recipes/recreate_skps.expected/Housekeeper-Weekly-RecreateSKPs.json index f5246a03a1..6833211217 100644 --- a/infra/bots/recipes/recreate_skps.expected/Housekeeper-Weekly-RecreateSKPs.json +++ b/infra/bots/recipes/recreate_skps.expected/Housekeeper-Weekly-RecreateSKPs.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", @@ -84,49 +41,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://chromium.googlesource.com/chromium/src.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git remote set-url (2)" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git fetch (2)" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "origin/lkgr" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git reset (2)" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git clean (2)" - }, - { - "cmd": [ "python", "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", diff --git a/infra/bots/recipes/recreate_skps.expected/failed_upload.json b/infra/bots/recipes/recreate_skps.expected/failed_upload.json index f6328542ea..c13c62a74e 100644 --- a/infra/bots/recipes/recreate_skps.expected/failed_upload.json +++ b/infra/bots/recipes/recreate_skps.expected/failed_upload.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", @@ -84,49 +41,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://chromium.googlesource.com/chromium/src.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git remote set-url (2)" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git fetch (2)" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "origin/lkgr" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git reset (2)" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/src", - "infra_step": true, - "name": "git clean (2)" - }, - { - "cmd": [ "python", "-u", "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", diff --git a/infra/bots/recipes/update_meta_config.expected/Housekeeper-Nightly-UpdateMetaConfig.json b/infra/bots/recipes/update_meta_config.expected/Housekeeper-Nightly-UpdateMetaConfig.json index 544b65798a..821b9f0423 100644 --- a/infra/bots/recipes/update_meta_config.expected/Housekeeper-Nightly-UpdateMetaConfig.json +++ b/infra/bots/recipes/update_meta_config.expected/Housekeeper-Nightly-UpdateMetaConfig.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/update_meta_config.expected/failed_update.json b/infra/bots/recipes/update_meta_config.expected/failed_update.json index 1d5a43dd1c..8cb1be73b2 100644 --- a/infra/bots/recipes/update_meta_config.expected/failed_update.json +++ b/infra/bots/recipes/update_meta_config.expected/failed_update.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", diff --git a/infra/bots/recipes/update_meta_config.expected/trybot_test.json b/infra/bots/recipes/update_meta_config.expected/trybot_test.json index 14438f665e..f2f8195e78 100644 --- a/infra/bots/recipes/update_meta_config.expected/trybot_test.json +++ b/infra/bots/recipes/update_meta_config.expected/trybot_test.json @@ -24,49 +24,6 @@ }, { "cmd": [ - "git", - "remote", - "set-url", - "origin", - "https://skia.googlesource.com/skia.git" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git remote set-url" - }, - { - "cmd": [ - "git", - "fetch" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git fetch" - }, - { - "cmd": [ - "git", - "reset", - "--hard", - "abc123" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git reset" - }, - { - "cmd": [ - "git", - "clean", - "-d", - "-f" - ], - "cwd": "[CUSTOM_/_B_WORK]/skia", - "infra_step": true, - "name": "git clean" - }, - { - "cmd": [ "python", "-u", "\nimport os\nimport sys\nos.remove(sys.argv[1])\n", |