# Copyright 2022 The ChromiumOS Authors1# Use of this source code is governed by a BSD-style license that can be2# found in the LICENSE file.34from recipe_engine.post_process import Filter56DEPS = [7"crosvm",8"recipe_engine/buildbucket",9"recipe_engine/context",10"recipe_engine/raw_io",11"recipe_engine/step",12"recipe_engine/path",13"recipe_engine/file",14]151617def RunSteps(api):18with api.crosvm.source_context():19# Execute push in a bash script so there is no chance of leaking the github token via luci20# logs.21api.step("Pushing to github", ["bash", api.resource("push_to_github.sh")])222324def GenTests(api):25yield (api.test("basic") + api.post_process(Filter("Pushing to github")))262728