зеркало из https://github.com/golang/build.git
47 строки
1.2 KiB
Go
47 строки
1.2 KiB
Go
// Copyright 2015 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build ignore
|
|
|
|
// The demo command shows and tests usage of the gerrit package.
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"log"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"time"
|
|
|
|
"golang.org/x/build/gerrit"
|
|
)
|
|
|
|
func main() {
|
|
gobotPass, err := os.ReadFile(filepath.Join(os.Getenv("HOME"), "keys", "gobot-golang-org.cookie"))
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
c := gerrit.NewClient("https://go-review.googlesource.com",
|
|
gerrit.BasicAuth("git-gobot.golang.org", strings.TrimSpace(string(gobotPass))))
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
defer cancel()
|
|
cl, err := c.QueryChanges(ctx, "label:Run-TryBot=1 label:TryBot-Result=0 project:go status:open", gerrit.QueryChangesOpt{
|
|
Fields: []string{"CURRENT_REVISION"},
|
|
})
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
v, _ := json.MarshalIndent(cl, "", " ")
|
|
os.Stdout.Write(v)
|
|
|
|
log.Printf("SetReview = %v", c.SetReview(ctx, "I2383397c056a9ffe174ac7c2c6e5bb334406fbf9", "current", gerrit.ReviewInput{
|
|
Message: "test test",
|
|
Labels: map[string]int{
|
|
"TryBot-Result": 0,
|
|
},
|
|
}))
|
|
}
|