2022-04-27 09:45:53 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"os"
|
|
|
|
"os/signal"
|
2022-07-12 09:37:48 +00:00
|
|
|
"syscall"
|
2022-04-27 09:45:53 +00:00
|
|
|
|
2023-02-22 16:19:43 +00:00
|
|
|
"codeberg.org/forgejo/runner/cmd"
|
2022-04-27 09:45:53 +00:00
|
|
|
)
|
|
|
|
|
2022-07-13 05:44:14 +00:00
|
|
|
func withContextFunc(ctx context.Context, f func()) context.Context {
|
2022-04-27 09:45:53 +00:00
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
|
|
go func() {
|
2022-07-13 05:44:14 +00:00
|
|
|
c := make(chan os.Signal, 1)
|
|
|
|
signal.Notify(c, syscall.SIGINT, syscall.SIGTERM)
|
|
|
|
defer signal.Stop(c)
|
|
|
|
|
2022-04-27 09:45:53 +00:00
|
|
|
select {
|
2022-07-13 05:44:14 +00:00
|
|
|
case <-ctx.Done():
|
2022-04-27 09:45:53 +00:00
|
|
|
case <-c:
|
|
|
|
cancel()
|
2022-07-13 05:44:14 +00:00
|
|
|
f()
|
2022-04-27 09:45:53 +00:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2022-07-13 05:44:14 +00:00
|
|
|
return ctx
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
ctx := withContextFunc(context.Background(), func() {})
|
2022-04-27 09:45:53 +00:00
|
|
|
// run the command
|
|
|
|
cmd.Execute(ctx)
|
|
|
|
}
|