mirror of
https://gitea.com/gitea/act_runner.git
synced 2025-06-14 10:37:12 +02:00
chore(runtime): fetch build data
Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
This commit is contained in:
@ -1,31 +1,11 @@
|
||||
package runtime
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"sync"
|
||||
)
|
||||
|
||||
var globalTaskMap sync.Map
|
||||
|
||||
// startTask adds the task to global map
|
||||
func startTask(buildID int64, ctx context.Context) error {
|
||||
_, exist := globalTaskMap.Load(buildID)
|
||||
if exist {
|
||||
return fmt.Errorf("task %d already exists", buildID)
|
||||
}
|
||||
|
||||
task := NewTask(buildID)
|
||||
|
||||
// set task ve to global map
|
||||
// when task is done or canceled, it will be removed from the map
|
||||
globalTaskMap.Store(buildID, task)
|
||||
|
||||
go task.Run(ctx)
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// finishTask removes the task from global map
|
||||
func finishTask(buildID int64) {
|
||||
globalTaskMap.Delete(buildID)
|
||||
|
Reference in New Issue
Block a user