2022-04-27 11:45:53 +02:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"os"
|
2022-09-03 09:57:53 +02:00
|
|
|
"strconv"
|
2022-07-21 03:36:17 +02:00
|
|
|
|
2022-10-02 06:33:17 +02:00
|
|
|
"gitea.com/gitea/act_runner/config"
|
2022-08-23 14:34:47 +02:00
|
|
|
"gitea.com/gitea/act_runner/engine"
|
|
|
|
"gitea.com/gitea/act_runner/runtime"
|
2022-10-02 06:33:17 +02:00
|
|
|
|
2022-07-21 03:36:17 +02:00
|
|
|
"github.com/mattn/go-isatty"
|
2022-08-13 07:12:38 +02:00
|
|
|
log "github.com/sirupsen/logrus"
|
2022-04-27 11:45:53 +02:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
const version = "0.1"
|
|
|
|
|
2022-08-13 07:12:38 +02:00
|
|
|
// initLogging setup the global logrus logger.
|
2022-10-02 06:33:17 +02:00
|
|
|
func initLogging(cfg config.Config) {
|
2022-07-21 03:36:17 +02:00
|
|
|
isTerm := isatty.IsTerminal(os.Stdout.Fd())
|
2022-08-13 07:12:38 +02:00
|
|
|
log.SetFormatter(&log.TextFormatter{
|
|
|
|
DisableColors: !isTerm,
|
|
|
|
FullTimestamp: true,
|
|
|
|
})
|
2022-07-21 03:36:17 +02:00
|
|
|
|
2022-08-13 07:12:38 +02:00
|
|
|
if cfg.Debug {
|
|
|
|
log.SetLevel(log.DebugLevel)
|
2022-07-21 03:36:17 +02:00
|
|
|
}
|
2022-08-13 07:12:38 +02:00
|
|
|
if cfg.Trace {
|
|
|
|
log.SetLevel(log.TraceLevel)
|
2022-07-21 03:36:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-27 11:45:53 +02:00
|
|
|
func Execute(ctx context.Context) {
|
2022-10-16 17:51:53 +02:00
|
|
|
task := runtime.NewTask("gitea", 0, nil)
|
2022-08-23 14:34:47 +02:00
|
|
|
|
|
|
|
// ./act_runner
|
2022-04-27 11:45:53 +02:00
|
|
|
rootCmd := &cobra.Command{
|
|
|
|
Use: "act [event name to run]\nIf no event name passed, will default to \"on: push\"",
|
|
|
|
Short: "Run GitHub actions locally by specifying the event name (e.g. `push`) or an action name directly.",
|
|
|
|
Args: cobra.MaximumNArgs(1),
|
2022-08-23 14:34:47 +02:00
|
|
|
RunE: runRoot(ctx, task),
|
2022-04-27 11:45:53 +02:00
|
|
|
Version: version,
|
|
|
|
SilenceUsage: true,
|
|
|
|
}
|
2022-08-23 14:34:47 +02:00
|
|
|
rootCmd.Flags().BoolP("run", "r", false, "run workflows")
|
|
|
|
rootCmd.Flags().StringP("job", "j", "", "run job")
|
|
|
|
rootCmd.PersistentFlags().StringVarP(&task.Input.ForgeInstance, "forge-instance", "", "github.com", "Forge instance to use.")
|
|
|
|
rootCmd.PersistentFlags().StringVarP(&task.Input.EnvFile, "env-file", "", ".env", "Read in a file of environment variables.")
|
|
|
|
|
|
|
|
// ./act_runner daemon
|
|
|
|
daemonCmd := &cobra.Command{
|
2022-05-02 11:02:51 +02:00
|
|
|
Aliases: []string{"daemon"},
|
2022-10-15 10:12:32 +02:00
|
|
|
Use: "execute runner daemon",
|
2022-05-02 11:02:51 +02:00
|
|
|
Args: cobra.MaximumNArgs(1),
|
2022-10-16 17:51:53 +02:00
|
|
|
RunE: runDaemon(ctx, task.Input.EnvFile),
|
2022-08-23 14:34:47 +02:00
|
|
|
}
|
2022-10-15 10:12:32 +02:00
|
|
|
// add all command
|
2022-10-15 14:03:33 +02:00
|
|
|
rootCmd.AddCommand(daemonCmd)
|
2022-04-27 11:45:53 +02:00
|
|
|
|
|
|
|
if err := rootCmd.Execute(); err != nil {
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-23 14:34:47 +02:00
|
|
|
func runRoot(ctx context.Context, task *runtime.Task) func(cmd *cobra.Command, args []string) error {
|
2022-05-02 11:02:51 +02:00
|
|
|
return func(cmd *cobra.Command, args []string) error {
|
|
|
|
jobID, err := cmd.Flags().GetString("job")
|
2022-04-27 11:45:53 +02:00
|
|
|
if err != nil {
|
2022-05-02 11:02:51 +02:00
|
|
|
return err
|
2022-04-27 11:45:53 +02:00
|
|
|
}
|
|
|
|
|
2022-08-23 14:34:47 +02:00
|
|
|
// try to connect to docker daemon
|
|
|
|
// if failed, exit with error
|
|
|
|
if err := engine.Start(ctx); err != nil {
|
|
|
|
log.WithError(err).Fatalln("failed to connect docker daemon engine")
|
|
|
|
}
|
|
|
|
|
2022-09-03 09:57:53 +02:00
|
|
|
task.BuildID, _ = strconv.ParseInt(jobID, 10, 64)
|
2022-10-02 06:33:17 +02:00
|
|
|
_ = task.Run(ctx, nil)
|
2022-09-03 09:57:53 +02:00
|
|
|
return nil
|
2022-04-27 11:45:53 +02:00
|
|
|
}
|
|
|
|
}
|