From 12af900564d2e4eacbdac15388712340abaa0c4e Mon Sep 17 00:00:00 2001 From: David Parsley Date: Fri, 1 Nov 2024 17:48:33 +0000 Subject: [PATCH] Finish removal of run-pipeline --- jobs/changebranch.py | 1 - jobs/updatecfg.py | 1 - plugins/bootstrap.py | 1 - 3 files changed, 3 deletions(-) diff --git a/jobs/changebranch.py b/jobs/changebranch.py index 18d4afbc..1acb49ff 100755 --- a/jobs/changebranch.py +++ b/jobs/changebranch.py @@ -38,5 +38,4 @@ bot.AddTask("exec", [ "git", "checkout", branch ]) # Make sure we're on latest commit for the branch bot.AddTask("exec", [ "git", "pull" ]) -bot.AddTask("run-pipeline", []) bot.AddCommand("builtin-admin", "reload") diff --git a/jobs/updatecfg.py b/jobs/updatecfg.py index dfb8bed9..088623a3 100755 --- a/jobs/updatecfg.py +++ b/jobs/updatecfg.py @@ -42,6 +42,5 @@ bot.AddTask("git-init", [ clone_url ]) bot.AddTask("exec", [ "git", "pull" ]) -bot.AddTask("run-pipeline", []) bot.AddTask("status", [ "Custom configuration repository successfully updated" ]) bot.AddCommand("builtin-admin", "reload") diff --git a/plugins/bootstrap.py b/plugins/bootstrap.py index 4525cd5e..77af45be 100755 --- a/plugins/bootstrap.py +++ b/plugins/bootstrap.py @@ -65,5 +65,4 @@ # backup and restore will check and exit bot.AddTask("exec", [ "touch", ".restore" ]) bot.AddTask("git-clone", [ clone_url, clone_branch, cfgdir, "true" ]) -bot.AddTask("run-pipeline", []) bot.AddTask("restart-robot", [])