act_runner/main.go

34 lines
482 B
Go
Raw Normal View History

2022-04-27 11:45:53 +02:00
package main
import (
"context"
"os"
"os/signal"
"syscall"
2022-04-27 11:45:53 +02:00
"gitea.com/gitea/act_runner/cmd"
)
func main() {
ctx := context.Background()
ctx, cancel := context.WithCancel(ctx)
// trap Ctrl+C and call cancel on the context
c := make(chan os.Signal, 1)
signal.Notify(c, syscall.SIGINT, syscall.SIGTERM)
2022-04-27 11:45:53 +02:00
defer func() {
signal.Stop(c)
cancel()
}()
go func() {
select {
case <-c:
cancel()
case <-ctx.Done():
}
}()
// run the command
cmd.Execute(ctx)
}