mirror of
https://github.com/go-gitea/gitea.git
synced 2025-07-23 05:46:09 +02:00
Remove unused file
This commit is contained in:
parent
f4bbd534b9
commit
f57e6999a2
@ -202,7 +202,7 @@ func (s *Service) UpdateTask(
|
|||||||
Creator: creator,
|
Creator: creator,
|
||||||
CommitStatus: &git_model.CommitStatus{
|
CommitStatus: &git_model.CommitStatus{
|
||||||
SHA: payload.HeadCommit.ID,
|
SHA: payload.HeadCommit.ID,
|
||||||
TargetURL: fmt.Sprintf("%s/builds/runs/%d", task.Job.Run.Repo.HTMLURL(), task.Job.Run.ID),
|
TargetURL: task.Job.Run.HTMLURL(),
|
||||||
Description: "",
|
Description: "",
|
||||||
Context: task.Job.Name,
|
Context: task.Job.Name,
|
||||||
CreatorID: payload.Pusher.ID,
|
CreatorID: payload.Pusher.ID,
|
||||||
|
@ -1,55 +0,0 @@
|
|||||||
// Copyright 2022 Gitea. All rights reserved.
|
|
||||||
// Use of this source code is governed by a MIT-style
|
|
||||||
// license that can be found in the LICENSE file.
|
|
||||||
|
|
||||||
package bots
|
|
||||||
|
|
||||||
//"code.gitea.io/gitea/modules/json"
|
|
||||||
|
|
||||||
/*
|
|
||||||
// buildQueue is a global queue of bot build
|
|
||||||
var buildQueue queue.Queue
|
|
||||||
|
|
||||||
// PushToQueue
|
|
||||||
func PushToQueue(task *bots_model.Build) {
|
|
||||||
buildQueue.Push(task)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Dispatch assign a task to a runner
|
|
||||||
func Dispatch(task *bots_model.Build) (*bots_model.Runner, error) {
|
|
||||||
runner, err := bots_model.GetUsableRunner(bots_model.FindRunnerOptions{
|
|
||||||
RepoID: task.RepoID,
|
|
||||||
})
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
return runner, bots_model.AssignBuildToRunner(task.ID, runner.ID)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Init will start the service to get all unfinished tasks and run them
|
|
||||||
func Init() error {
|
|
||||||
buildQueue = queue.CreateQueue("actions_task", handle, &bots_model.Build{})
|
|
||||||
if buildQueue == nil {
|
|
||||||
return fmt.Errorf("Unable to create Task Queue")
|
|
||||||
}
|
|
||||||
|
|
||||||
go graceful.GetManager().RunWithShutdownFns(buildQueue.Run)
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func handle(data ...queue.Data) []queue.Data {
|
|
||||||
var unhandled []queue.Data
|
|
||||||
for _, datum := range data {
|
|
||||||
build := datum.(*bots_model.Build)
|
|
||||||
runner, err := Dispatch(build)
|
|
||||||
if err != nil {
|
|
||||||
log.Error("Run build failed: %v", err)
|
|
||||||
unhandled = append(unhandled, build)
|
|
||||||
} else {
|
|
||||||
log.Trace("build %v assigned to %s", build.UUID, runner.UUID)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return unhandled
|
|
||||||
}*/
|
|
Loading…
x
Reference in New Issue
Block a user