aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/vcs/fuchsia.go
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2024-10-04 11:18:10 +0200
committerTaras Madan <tarasmadan@google.com>2024-10-10 15:39:25 +0000
commitcd942402d6bc82fa3ea87e5c43509e1ec6cfafe2 (patch)
tree4bcd4b26ad9f9a1a79d6530b2bc0bdccc1ea1015 /pkg/vcs/fuchsia.go
parentd7475276a82f2dbec772bce46ac82ce370fb4bef (diff)
syz-ci: introduce gitArchive parameters
Some commits don't live long remotely. It sometimes happens we need them later to: 1. Merge coverage. 2. Mention during communication.
Diffstat (limited to 'pkg/vcs/fuchsia.go')
-rw-r--r--pkg/vcs/fuchsia.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/vcs/fuchsia.go b/pkg/vcs/fuchsia.go
index 2ad0e1878..704c0a9e6 100644
--- a/pkg/vcs/fuchsia.go
+++ b/pkg/vcs/fuchsia.go
@@ -107,3 +107,7 @@ func (ctx *fuchsia) MergeBases(firstCommit, secondCommit string) ([]*Commit, err
func (ctx *fuchsia) CommitExists(string) (bool, error) {
return false, fmt.Errorf("not implemented for fuchsia")
}
+
+func (ctx *fuchsia) PushCommit(repo, commit string) error {
+ return ctx.repo.PushCommit(repo, commit)
+}