2020-02-07 14:17:58 +08:00
|
|
|
package runner
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-02-14 16:41:20 +08:00
|
|
|
"encoding/json"
|
2020-11-18 01:31:05 +08:00
|
|
|
"errors"
|
2020-02-07 14:17:58 +08:00
|
|
|
"fmt"
|
|
|
|
"os"
|
2020-02-24 07:01:25 +08:00
|
|
|
"path/filepath"
|
2020-02-07 14:17:58 +08:00
|
|
|
"regexp"
|
2020-02-25 02:56:49 +08:00
|
|
|
"runtime"
|
2020-02-07 14:17:58 +08:00
|
|
|
"strings"
|
|
|
|
|
2021-09-10 13:03:40 +08:00
|
|
|
"github.com/google/shlex"
|
|
|
|
"github.com/spf13/pflag"
|
|
|
|
|
2021-04-05 23:51:13 +08:00
|
|
|
"github.com/mitchellh/go-homedir"
|
2021-03-29 12:08:40 +08:00
|
|
|
log "github.com/sirupsen/logrus"
|
2020-02-07 14:17:58 +08:00
|
|
|
|
2021-11-26 13:18:31 +08:00
|
|
|
selinux "github.com/opencontainers/selinux/go-selinux"
|
|
|
|
|
2020-02-07 14:17:58 +08:00
|
|
|
"github.com/nektos/act/pkg/common"
|
2021-03-29 12:08:40 +08:00
|
|
|
"github.com/nektos/act/pkg/container"
|
2020-02-07 14:17:58 +08:00
|
|
|
"github.com/nektos/act/pkg/model"
|
|
|
|
)
|
|
|
|
|
2021-05-25 01:09:03 +08:00
|
|
|
const ActPath string = "/var/run/act"
|
|
|
|
|
2020-02-07 14:17:58 +08:00
|
|
|
// RunContext contains info about current job
|
|
|
|
type RunContext struct {
|
2021-04-03 04:40:44 +08:00
|
|
|
Name string
|
|
|
|
Config *Config
|
|
|
|
Matrix map[string]interface{}
|
|
|
|
Run *model.Run
|
|
|
|
EventJSON string
|
|
|
|
Env map[string]string
|
|
|
|
ExtraPath []string
|
|
|
|
CurrentStep string
|
|
|
|
StepResults map[string]*stepResult
|
|
|
|
ExprEval ExpressionEvaluator
|
|
|
|
JobContainer container.Container
|
|
|
|
OutputMappings map[MappableOutput]MappableOutput
|
2021-05-07 04:02:29 +08:00
|
|
|
JobName string
|
2021-04-03 04:40:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type MappableOutput struct {
|
|
|
|
StepID string
|
|
|
|
OutputName string
|
2020-02-14 16:41:20 +08:00
|
|
|
}
|
|
|
|
|
2020-02-27 15:29:43 +08:00
|
|
|
func (rc *RunContext) String() string {
|
|
|
|
return fmt.Sprintf("%s/%s", rc.Run.Workflow.Name, rc.Name)
|
|
|
|
}
|
|
|
|
|
2020-02-14 16:41:20 +08:00
|
|
|
type stepResult struct {
|
|
|
|
Success bool `json:"success"`
|
|
|
|
Outputs map[string]string `json:"outputs"`
|
2020-02-07 14:17:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetEnv returns the env for the context
|
|
|
|
func (rc *RunContext) GetEnv() map[string]string {
|
|
|
|
if rc.Env == nil {
|
2021-06-06 22:53:18 +08:00
|
|
|
rc.Env = mergeMaps(rc.Config.Env, rc.Run.Workflow.Env, rc.Run.Job().Environment())
|
2020-02-07 14:17:58 +08:00
|
|
|
}
|
2020-11-18 23:14:34 +08:00
|
|
|
rc.Env["ACT"] = "true"
|
2020-02-07 14:17:58 +08:00
|
|
|
return rc.Env
|
|
|
|
}
|
|
|
|
|
2020-02-24 07:01:25 +08:00
|
|
|
func (rc *RunContext) jobContainerName() string {
|
2020-02-27 15:29:43 +08:00
|
|
|
return createContainerName("act", rc.String())
|
2020-02-07 14:17:58 +08:00
|
|
|
}
|
|
|
|
|
2021-05-05 05:50:35 +08:00
|
|
|
// Returns the binds and mounts for the container, resolving paths as appopriate
|
|
|
|
func (rc *RunContext) GetBindsAndMounts() ([]string, map[string]string) {
|
|
|
|
name := rc.jobContainerName()
|
|
|
|
|
2021-05-23 22:43:09 +08:00
|
|
|
if rc.Config.ContainerDaemonSocket == "" {
|
|
|
|
rc.Config.ContainerDaemonSocket = "/var/run/docker.sock"
|
|
|
|
}
|
|
|
|
|
2021-05-05 05:50:35 +08:00
|
|
|
binds := []string{
|
2021-05-23 22:43:09 +08:00
|
|
|
fmt.Sprintf("%s:%s", rc.Config.ContainerDaemonSocket, "/var/run/docker.sock"),
|
2021-05-05 05:50:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
mounts := map[string]string{
|
|
|
|
"act-toolcache": "/toolcache",
|
2021-09-24 21:32:22 +08:00
|
|
|
name + "-env": ActPath,
|
2021-05-05 05:50:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if rc.Config.BindWorkdir {
|
|
|
|
bindModifiers := ""
|
|
|
|
if runtime.GOOS == "darwin" {
|
|
|
|
bindModifiers = ":delegated"
|
|
|
|
}
|
2021-11-26 13:18:31 +08:00
|
|
|
if selinux.GetEnabled() {
|
|
|
|
bindModifiers = ":z"
|
|
|
|
}
|
2021-05-05 05:50:35 +08:00
|
|
|
binds = append(binds, fmt.Sprintf("%s:%s%s", rc.Config.Workdir, rc.Config.ContainerWorkdir(), bindModifiers))
|
|
|
|
} else {
|
|
|
|
mounts[name] = rc.Config.ContainerWorkdir()
|
|
|
|
}
|
|
|
|
|
|
|
|
return binds, mounts
|
|
|
|
}
|
|
|
|
|
2020-02-24 07:01:25 +08:00
|
|
|
func (rc *RunContext) startJobContainer() common.Executor {
|
2020-03-17 05:58:10 +08:00
|
|
|
image := rc.platformImage()
|
2021-09-10 13:03:40 +08:00
|
|
|
hostname := rc.hostname()
|
2020-02-24 07:01:25 +08:00
|
|
|
|
|
|
|
return func(ctx context.Context) error {
|
|
|
|
rawLogger := common.Logger(ctx).WithField("raw_output", true)
|
2020-02-25 04:48:12 +08:00
|
|
|
logWriter := common.NewLineWriter(rc.commandHandler(ctx), func(s string) bool {
|
2020-02-24 07:01:25 +08:00
|
|
|
if rc.Config.LogOutput {
|
2020-06-24 22:05:05 +08:00
|
|
|
rawLogger.Infof("%s", s)
|
2020-02-24 07:01:25 +08:00
|
|
|
} else {
|
2020-06-24 22:05:05 +08:00
|
|
|
rawLogger.Debugf("%s", s)
|
2020-02-24 07:01:25 +08:00
|
|
|
}
|
2020-02-25 04:48:12 +08:00
|
|
|
return true
|
2020-02-24 07:01:25 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
common.Logger(ctx).Infof("\U0001f680 Start image=%s", image)
|
|
|
|
name := rc.jobContainerName()
|
|
|
|
|
2020-02-25 02:56:49 +08:00
|
|
|
envList := make([]string, 0)
|
|
|
|
|
2020-02-26 00:52:05 +08:00
|
|
|
envList = append(envList, fmt.Sprintf("%s=%s", "RUNNER_TOOL_CACHE", "/opt/hostedtoolcache"))
|
2020-04-23 14:57:36 +08:00
|
|
|
envList = append(envList, fmt.Sprintf("%s=%s", "RUNNER_OS", "Linux"))
|
2020-04-23 23:18:36 +08:00
|
|
|
envList = append(envList, fmt.Sprintf("%s=%s", "RUNNER_TEMP", "/tmp"))
|
2020-02-25 02:56:49 +08:00
|
|
|
|
2021-05-05 05:50:35 +08:00
|
|
|
binds, mounts := rc.GetBindsAndMounts()
|
2020-02-25 09:48:21 +08:00
|
|
|
|
2020-02-24 07:01:25 +08:00
|
|
|
rc.JobContainer = container.NewContainer(&container.NewContainerInput{
|
2021-05-05 05:50:35 +08:00
|
|
|
Cmd: nil,
|
|
|
|
Entrypoint: []string{"/usr/bin/tail", "-f", "/dev/null"},
|
|
|
|
WorkingDir: rc.Config.ContainerWorkdir(),
|
|
|
|
Image: image,
|
2021-05-06 00:37:17 +08:00
|
|
|
Username: rc.Config.Secrets["DOCKER_USERNAME"],
|
|
|
|
Password: rc.Config.Secrets["DOCKER_PASSWORD"],
|
2021-05-05 05:50:35 +08:00
|
|
|
Name: name,
|
|
|
|
Env: envList,
|
|
|
|
Mounts: mounts,
|
2020-03-10 08:43:24 +08:00
|
|
|
NetworkMode: "host",
|
|
|
|
Binds: binds,
|
|
|
|
Stdout: logWriter,
|
|
|
|
Stderr: logWriter,
|
2020-08-02 04:21:49 +08:00
|
|
|
Privileged: rc.Config.Privileged,
|
2021-02-28 00:31:25 +08:00
|
|
|
UsernsMode: rc.Config.UsernsMode,
|
2021-03-29 12:08:40 +08:00
|
|
|
Platform: rc.Config.ContainerArchitecture,
|
2021-09-10 13:03:40 +08:00
|
|
|
Hostname: hostname,
|
2020-02-24 07:01:25 +08:00
|
|
|
})
|
|
|
|
|
2020-03-10 08:45:42 +08:00
|
|
|
var copyWorkspace bool
|
|
|
|
var copyToPath string
|
|
|
|
if !rc.Config.BindWorkdir {
|
|
|
|
copyToPath, copyWorkspace = rc.localCheckoutPath()
|
2021-05-05 05:50:35 +08:00
|
|
|
copyToPath = filepath.Join(rc.Config.ContainerWorkdir(), copyToPath)
|
2020-03-10 08:45:42 +08:00
|
|
|
}
|
|
|
|
|
2020-02-24 07:01:25 +08:00
|
|
|
return common.NewPipelineExecutor(
|
|
|
|
rc.JobContainer.Pull(rc.Config.ForcePull),
|
2020-06-18 23:21:55 +08:00
|
|
|
rc.stopJobContainer(),
|
2021-06-05 00:06:59 +08:00
|
|
|
rc.JobContainer.Create(rc.Config.ContainerCapAdd, rc.Config.ContainerCapDrop),
|
2020-02-24 07:01:25 +08:00
|
|
|
rc.JobContainer.Start(false),
|
2021-09-28 03:01:14 +08:00
|
|
|
rc.JobContainer.UpdateFromImageEnv(&rc.Env),
|
2021-05-06 07:11:43 +08:00
|
|
|
rc.JobContainer.UpdateFromEnv("/etc/environment", &rc.Env),
|
2021-08-11 03:40:20 +08:00
|
|
|
rc.JobContainer.Exec([]string{"mkdir", "-m", "0777", "-p", ActPath}, rc.Env, "root", ""),
|
2021-05-03 22:37:20 +08:00
|
|
|
rc.JobContainer.CopyDir(copyToPath, rc.Config.Workdir+string(filepath.Separator)+".", rc.Config.UseGitIgnore).IfBool(copyWorkspace),
|
2021-05-25 01:09:03 +08:00
|
|
|
rc.JobContainer.Copy(ActPath+"/", &container.FileEntry{
|
2020-02-24 07:01:25 +08:00
|
|
|
Name: "workflow/event.json",
|
2020-08-09 04:31:26 +08:00
|
|
|
Mode: 0644,
|
2020-02-24 07:01:25 +08:00
|
|
|
Body: rc.EventJSON,
|
2021-01-12 14:39:43 +08:00
|
|
|
}, &container.FileEntry{
|
|
|
|
Name: "workflow/envs.txt",
|
2021-06-10 07:08:39 +08:00
|
|
|
Mode: 0666,
|
2021-01-12 14:39:43 +08:00
|
|
|
Body: "",
|
2021-05-06 21:30:12 +08:00
|
|
|
}, &container.FileEntry{
|
|
|
|
Name: "workflow/paths.txt",
|
2021-06-10 07:08:39 +08:00
|
|
|
Mode: 0666,
|
2021-05-06 21:30:12 +08:00
|
|
|
Body: "",
|
2020-02-24 07:01:25 +08:00
|
|
|
}),
|
|
|
|
)(ctx)
|
|
|
|
}
|
|
|
|
}
|
2021-08-11 03:40:20 +08:00
|
|
|
|
|
|
|
func (rc *RunContext) execJobContainer(cmd []string, env map[string]string, user, workdir string) common.Executor {
|
2020-02-24 07:01:25 +08:00
|
|
|
return func(ctx context.Context) error {
|
2021-08-11 03:40:20 +08:00
|
|
|
return rc.JobContainer.Exec(cmd, env, user, workdir)(ctx)
|
2020-02-24 07:01:25 +08:00
|
|
|
}
|
|
|
|
}
|
2020-06-18 23:21:55 +08:00
|
|
|
|
|
|
|
// stopJobContainer removes the job container (if it exists) and its volume (if it exists) if !rc.Config.ReuseContainers
|
2020-02-24 07:01:25 +08:00
|
|
|
func (rc *RunContext) stopJobContainer() common.Executor {
|
|
|
|
return func(ctx context.Context) error {
|
|
|
|
if rc.JobContainer != nil && !rc.Config.ReuseContainers {
|
|
|
|
return rc.JobContainer.Remove().
|
|
|
|
Then(container.NewDockerVolumeRemoveExecutor(rc.jobContainerName(), false))(ctx)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-05 05:50:35 +08:00
|
|
|
// Prepare the mounts and binds for the worker
|
|
|
|
|
2020-02-25 02:56:49 +08:00
|
|
|
// ActionCacheDir is for rc
|
|
|
|
func (rc *RunContext) ActionCacheDir() string {
|
2020-02-24 14:34:48 +08:00
|
|
|
var xdgCache string
|
|
|
|
var ok bool
|
2021-04-05 23:51:13 +08:00
|
|
|
if xdgCache, ok = os.LookupEnv("XDG_CACHE_HOME"); !ok || xdgCache == "" {
|
|
|
|
if home, err := homedir.Dir(); err == nil {
|
|
|
|
xdgCache = filepath.Join(home, ".cache")
|
|
|
|
} else if xdgCache, err = filepath.Abs("."); err != nil {
|
|
|
|
log.Fatal(err)
|
2020-02-24 14:34:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return filepath.Join(xdgCache, "act")
|
|
|
|
}
|
|
|
|
|
2021-11-24 23:49:08 +08:00
|
|
|
// Interpolate outputs after a job is done
|
|
|
|
func (rc *RunContext) interpolateOutputs() common.Executor {
|
|
|
|
return func(ctx context.Context) error {
|
|
|
|
ee := rc.NewExpressionEvaluator()
|
|
|
|
for k, v := range rc.Run.Job().Outputs {
|
|
|
|
interpolated := ee.Interpolate(v)
|
|
|
|
if v != interpolated {
|
|
|
|
rc.Run.Job().Outputs[k] = interpolated
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-24 07:01:25 +08:00
|
|
|
// Executor returns a pipeline executor for all the steps in the job
|
|
|
|
func (rc *RunContext) Executor() common.Executor {
|
2020-02-07 14:17:58 +08:00
|
|
|
steps := make([]common.Executor, 0)
|
2020-02-27 15:29:43 +08:00
|
|
|
|
|
|
|
steps = append(steps, func(ctx context.Context) error {
|
|
|
|
if len(rc.Matrix) > 0 {
|
|
|
|
common.Logger(ctx).Infof("\U0001F9EA Matrix: %v", rc.Matrix)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
2020-02-24 07:01:25 +08:00
|
|
|
steps = append(steps, rc.startJobContainer())
|
2020-02-07 14:17:58 +08:00
|
|
|
|
2020-02-11 07:27:05 +08:00
|
|
|
for i, step := range rc.Run.Job().Steps {
|
|
|
|
if step.ID == "" {
|
|
|
|
step.ID = fmt.Sprintf("%d", i)
|
|
|
|
}
|
2020-02-24 07:01:25 +08:00
|
|
|
steps = append(steps, rc.newStepExecutor(step))
|
|
|
|
}
|
|
|
|
steps = append(steps, rc.stopJobContainer())
|
2020-02-18 02:11:16 +08:00
|
|
|
|
2021-11-24 23:49:08 +08:00
|
|
|
return common.NewPipelineExecutor(steps...).Finally(rc.interpolateOutputs()).Finally(func(ctx context.Context) error {
|
2021-10-25 00:50:43 +08:00
|
|
|
if rc.JobContainer != nil {
|
|
|
|
return rc.JobContainer.Close()(ctx)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}).If(rc.isEnabled)
|
2020-02-24 07:01:25 +08:00
|
|
|
}
|
2020-02-18 02:11:16 +08:00
|
|
|
|
2020-02-24 07:01:25 +08:00
|
|
|
func (rc *RunContext) newStepExecutor(step *model.Step) common.Executor {
|
|
|
|
sc := &StepContext{
|
|
|
|
RunContext: rc,
|
|
|
|
Step: step,
|
2020-02-07 14:17:58 +08:00
|
|
|
}
|
2020-02-18 02:11:16 +08:00
|
|
|
return func(ctx context.Context) error {
|
2020-02-24 07:01:25 +08:00
|
|
|
rc.CurrentStep = sc.Step.ID
|
|
|
|
rc.StepResults[rc.CurrentStep] = &stepResult{
|
|
|
|
Success: true,
|
|
|
|
Outputs: make(map[string]string),
|
2020-02-18 02:11:16 +08:00
|
|
|
}
|
2021-05-06 04:04:03 +08:00
|
|
|
runStep, err := rc.EvalBool(sc.Step.If.Value)
|
2021-05-04 00:51:48 +08:00
|
|
|
|
2020-11-18 01:31:05 +08:00
|
|
|
if err != nil {
|
|
|
|
common.Logger(ctx).Errorf(" \u274C Error in if: expression - %s", sc.Step)
|
2021-05-04 00:51:48 +08:00
|
|
|
exprEval, err := sc.setupEnv(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
rc.ExprEval = exprEval
|
2020-11-18 01:31:05 +08:00
|
|
|
rc.StepResults[rc.CurrentStep].Success = false
|
|
|
|
return err
|
|
|
|
}
|
2021-05-04 00:51:48 +08:00
|
|
|
|
2020-11-18 01:31:05 +08:00
|
|
|
if !runStep {
|
2021-05-06 04:04:03 +08:00
|
|
|
log.Debugf("Skipping step '%s' due to '%s'", sc.Step.String(), sc.Step.If.Value)
|
2020-02-18 02:11:16 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-05-04 00:51:48 +08:00
|
|
|
exprEval, err := sc.setupEnv(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
rc.ExprEval = exprEval
|
|
|
|
|
2020-02-24 07:01:25 +08:00
|
|
|
common.Logger(ctx).Infof("\u2B50 Run %s", sc.Step)
|
2021-11-24 23:49:08 +08:00
|
|
|
err = sc.Executor()(ctx)
|
2020-02-24 07:01:25 +08:00
|
|
|
if err == nil {
|
|
|
|
common.Logger(ctx).Infof(" \u2705 Success - %s", sc.Step)
|
|
|
|
} else {
|
|
|
|
common.Logger(ctx).Errorf(" \u274C Failure - %s", sc.Step)
|
2021-02-26 00:55:07 +08:00
|
|
|
|
|
|
|
if sc.Step.ContinueOnError {
|
|
|
|
common.Logger(ctx).Infof("Failed but continue next step")
|
|
|
|
err = nil
|
|
|
|
rc.StepResults[rc.CurrentStep].Success = true
|
|
|
|
} else {
|
|
|
|
rc.StepResults[rc.CurrentStep].Success = false
|
|
|
|
}
|
2020-02-21 11:43:20 +08:00
|
|
|
}
|
2020-02-24 07:01:25 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2020-02-21 11:43:20 +08:00
|
|
|
|
2020-03-17 05:58:10 +08:00
|
|
|
func (rc *RunContext) platformImage() string {
|
|
|
|
job := rc.Run.Job()
|
|
|
|
|
|
|
|
c := job.Container()
|
|
|
|
if c != nil {
|
2020-11-11 06:55:27 +08:00
|
|
|
return rc.ExprEval.Interpolate(c.Image)
|
2020-03-17 05:58:10 +08:00
|
|
|
}
|
|
|
|
|
2021-01-21 22:02:48 +08:00
|
|
|
if job.RunsOn() == nil {
|
|
|
|
log.Errorf("'runs-on' key not defined in %s", rc.String())
|
|
|
|
}
|
|
|
|
|
2020-03-17 05:58:10 +08:00
|
|
|
for _, runnerLabel := range job.RunsOn() {
|
|
|
|
platformName := rc.ExprEval.Interpolate(runnerLabel)
|
|
|
|
image := rc.Config.Platforms[strings.ToLower(platformName)]
|
|
|
|
if image != "" {
|
|
|
|
return image
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2021-09-10 13:03:40 +08:00
|
|
|
func (rc *RunContext) hostname() string {
|
|
|
|
job := rc.Run.Job()
|
|
|
|
c := job.Container()
|
|
|
|
if c == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
optionsFlags := pflag.NewFlagSet("container_options", pflag.ContinueOnError)
|
|
|
|
hostname := optionsFlags.StringP("hostname", "h", "", "")
|
|
|
|
optionsArgs, err := shlex.Split(c.Options)
|
|
|
|
if err != nil {
|
|
|
|
log.Warnf("Cannot parse container options: %s", c.Options)
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
err = optionsFlags.Parse(optionsArgs)
|
|
|
|
if err != nil {
|
|
|
|
log.Warnf("Cannot parse container options: %s", c.Options)
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return *hostname
|
|
|
|
}
|
|
|
|
|
2020-02-24 07:01:25 +08:00
|
|
|
func (rc *RunContext) isEnabled(ctx context.Context) bool {
|
|
|
|
job := rc.Run.Job()
|
2020-05-05 03:18:13 +08:00
|
|
|
l := common.Logger(ctx)
|
2021-05-06 04:04:03 +08:00
|
|
|
runJob, err := rc.EvalBool(job.If.Value)
|
2020-11-18 01:31:05 +08:00
|
|
|
if err != nil {
|
|
|
|
common.Logger(ctx).Errorf(" \u274C Error in if: expression - %s", job.Name)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if !runJob {
|
2021-05-06 04:04:03 +08:00
|
|
|
l.Debugf("Skipping job '%s' due to '%s'", job.Name, job.If.Value)
|
2020-02-24 07:01:25 +08:00
|
|
|
return false
|
|
|
|
}
|
2020-02-21 11:43:20 +08:00
|
|
|
|
2020-03-17 05:58:10 +08:00
|
|
|
img := rc.platformImage()
|
|
|
|
if img == "" {
|
2021-01-21 22:02:48 +08:00
|
|
|
if job.RunsOn() == nil {
|
|
|
|
log.Errorf("'runs-on' key not defined in %s", rc.String())
|
|
|
|
}
|
|
|
|
|
2020-12-09 02:13:07 +08:00
|
|
|
for _, runnerLabel := range job.RunsOn() {
|
|
|
|
platformName := rc.ExprEval.Interpolate(runnerLabel)
|
2021-09-14 07:14:41 +08:00
|
|
|
l.Infof("\U0001F6A7 Skipping unsupported platform -- Try running with `-P %+v=...`", platformName)
|
2020-12-09 02:13:07 +08:00
|
|
|
}
|
2020-02-24 07:01:25 +08:00
|
|
|
return false
|
2020-02-18 02:11:16 +08:00
|
|
|
}
|
2020-02-24 07:01:25 +08:00
|
|
|
return true
|
2020-02-18 02:11:16 +08:00
|
|
|
}
|
|
|
|
|
2021-01-12 14:39:43 +08:00
|
|
|
var splitPattern *regexp.Regexp
|
|
|
|
|
2020-02-18 02:11:16 +08:00
|
|
|
// EvalBool evaluates an expression against current run context
|
2020-11-18 01:31:05 +08:00
|
|
|
func (rc *RunContext) EvalBool(expr string) (bool, error) {
|
2021-01-12 14:39:43 +08:00
|
|
|
if splitPattern == nil {
|
|
|
|
splitPattern = regexp.MustCompile(fmt.Sprintf(`%s|%s|\S+`, expressionPattern.String(), operatorPattern.String()))
|
|
|
|
}
|
2020-11-18 01:31:05 +08:00
|
|
|
if strings.HasPrefix(strings.TrimSpace(expr), "!") {
|
|
|
|
return false, errors.New("expressions starting with ! must be wrapped in ${{ }}")
|
|
|
|
}
|
2020-02-18 02:11:16 +08:00
|
|
|
if expr != "" {
|
2020-11-18 01:31:05 +08:00
|
|
|
parts := splitPattern.FindAllString(expr, -1)
|
2020-11-13 00:15:09 +08:00
|
|
|
var evaluatedParts []string
|
2020-11-18 01:31:05 +08:00
|
|
|
for i, part := range parts {
|
|
|
|
if operatorPattern.MatchString(part) {
|
2020-11-13 00:15:09 +08:00
|
|
|
evaluatedParts = append(evaluatedParts, part)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2020-11-18 01:31:05 +08:00
|
|
|
interpolatedPart, isString := rc.ExprEval.InterpolateWithStringCheck(part)
|
|
|
|
|
2021-03-31 03:26:25 +08:00
|
|
|
// This peculiar transformation has to be done because the GitHub parser
|
2021-01-15 13:21:44 +08:00
|
|
|
// treats false returned from contexts as a string, not a boolean.
|
2020-11-18 01:31:05 +08:00
|
|
|
// Hence env.SOMETHING will be evaluated to true in an if: expression
|
|
|
|
// regardless if SOMETHING is set to false, true or any other string.
|
|
|
|
// It also handles some other weirdness that I found by trial and error.
|
|
|
|
if (expressionPattern.MatchString(part) && // it is an expression
|
|
|
|
!strings.Contains(part, "!")) && // but it's not negated
|
|
|
|
interpolatedPart == "false" && // and the interpolated string is false
|
|
|
|
(isString || previousOrNextPartIsAnOperator(i, parts)) { // and it's of type string or has an logical operator before or after
|
|
|
|
interpolatedPart = fmt.Sprintf("'%s'", interpolatedPart) // then we have to quote the false expression
|
2020-11-13 00:15:09 +08:00
|
|
|
}
|
2020-11-18 01:31:05 +08:00
|
|
|
|
|
|
|
evaluatedParts = append(evaluatedParts, interpolatedPart)
|
2020-11-13 00:15:09 +08:00
|
|
|
}
|
|
|
|
|
2020-11-18 01:31:05 +08:00
|
|
|
joined := strings.Join(evaluatedParts, " ")
|
|
|
|
v, _, err := rc.ExprEval.Evaluate(fmt.Sprintf("Boolean(%s)", joined))
|
2020-02-18 02:11:16 +08:00
|
|
|
if err != nil {
|
2021-01-19 03:44:27 +08:00
|
|
|
return false, err
|
2020-02-18 02:11:16 +08:00
|
|
|
}
|
2020-03-07 03:30:39 +08:00
|
|
|
log.Debugf("expression '%s' evaluated to '%s'", expr, v)
|
2020-11-18 01:31:05 +08:00
|
|
|
return v == "true", nil
|
2020-02-18 02:11:16 +08:00
|
|
|
}
|
2020-11-18 01:31:05 +08:00
|
|
|
return true, nil
|
2020-11-13 00:15:09 +08:00
|
|
|
}
|
|
|
|
|
2020-11-18 01:31:05 +08:00
|
|
|
func previousOrNextPartIsAnOperator(i int, parts []string) bool {
|
|
|
|
operator := false
|
|
|
|
if i > 0 {
|
|
|
|
operator = operatorPattern.MatchString(parts[i-1])
|
|
|
|
}
|
|
|
|
if i+1 < len(parts) {
|
|
|
|
operator = operator || operatorPattern.MatchString(parts[i+1])
|
2020-11-13 00:15:09 +08:00
|
|
|
}
|
2020-11-18 01:31:05 +08:00
|
|
|
return operator
|
2020-11-13 00:15:09 +08:00
|
|
|
}
|
|
|
|
|
2020-02-07 14:17:58 +08:00
|
|
|
func mergeMaps(maps ...map[string]string) map[string]string {
|
|
|
|
rtnMap := make(map[string]string)
|
|
|
|
for _, m := range maps {
|
|
|
|
for k, v := range m {
|
|
|
|
rtnMap[k] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rtnMap
|
|
|
|
}
|
|
|
|
|
2020-02-24 07:01:25 +08:00
|
|
|
func createContainerName(parts ...string) string {
|
|
|
|
name := make([]string, 0)
|
|
|
|
pattern := regexp.MustCompile("[^a-zA-Z0-9]")
|
2020-02-24 08:36:44 +08:00
|
|
|
partLen := (30 / len(parts)) - 1
|
2020-02-24 14:34:48 +08:00
|
|
|
for i, part := range parts {
|
|
|
|
if i == len(parts)-1 {
|
|
|
|
name = append(name, pattern.ReplaceAllString(part, "-"))
|
|
|
|
} else {
|
2021-04-05 23:51:13 +08:00
|
|
|
// If any part has a '-<number>' on the end it is likely part of a matrix job.
|
|
|
|
// Let's preserve the number to prevent clashes in container names.
|
|
|
|
re := regexp.MustCompile("-[0-9]+$")
|
|
|
|
num := re.FindStringSubmatch(part)
|
|
|
|
if len(num) > 0 {
|
|
|
|
name = append(name, trimToLen(pattern.ReplaceAllString(part, "-"), partLen-len(num[0])))
|
|
|
|
name = append(name, num[0])
|
|
|
|
} else {
|
|
|
|
name = append(name, trimToLen(pattern.ReplaceAllString(part, "-"), partLen))
|
2021-04-03 04:40:44 +08:00
|
|
|
}
|
2020-02-24 14:34:48 +08:00
|
|
|
}
|
2020-02-24 07:01:25 +08:00
|
|
|
}
|
2021-04-05 23:51:13 +08:00
|
|
|
return strings.ReplaceAll(strings.Trim(strings.Join(name, "-"), "-"), "--", "-")
|
2020-02-07 14:17:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func trimToLen(s string, l int) string {
|
2020-02-21 11:43:20 +08:00
|
|
|
if l < 0 {
|
|
|
|
l = 0
|
|
|
|
}
|
2020-02-07 14:17:58 +08:00
|
|
|
if len(s) > l {
|
|
|
|
return s[:l]
|
|
|
|
}
|
|
|
|
return s
|
|
|
|
}
|
2020-02-14 16:41:20 +08:00
|
|
|
|
|
|
|
type jobContext struct {
|
|
|
|
Status string `json:"status"`
|
|
|
|
Container struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
Network string `json:"network"`
|
|
|
|
} `json:"container"`
|
|
|
|
Services map[string]struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
} `json:"services"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rc *RunContext) getJobContext() *jobContext {
|
|
|
|
jobStatus := "success"
|
|
|
|
for _, stepStatus := range rc.StepResults {
|
|
|
|
if !stepStatus.Success {
|
|
|
|
jobStatus = "failure"
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return &jobContext{
|
|
|
|
Status: jobStatus,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rc *RunContext) getStepsContext() map[string]*stepResult {
|
|
|
|
return rc.StepResults
|
|
|
|
}
|
|
|
|
|
|
|
|
type githubContext struct {
|
2021-05-07 04:02:29 +08:00
|
|
|
Event map[string]interface{} `json:"event"`
|
|
|
|
EventPath string `json:"event_path"`
|
|
|
|
Workflow string `json:"workflow"`
|
|
|
|
RunID string `json:"run_id"`
|
|
|
|
RunNumber string `json:"run_number"`
|
|
|
|
Actor string `json:"actor"`
|
|
|
|
Repository string `json:"repository"`
|
|
|
|
EventName string `json:"event_name"`
|
|
|
|
Sha string `json:"sha"`
|
|
|
|
Ref string `json:"ref"`
|
|
|
|
HeadRef string `json:"head_ref"`
|
|
|
|
BaseRef string `json:"base_ref"`
|
|
|
|
Token string `json:"token"`
|
|
|
|
Workspace string `json:"workspace"`
|
|
|
|
Action string `json:"action"`
|
|
|
|
ActionPath string `json:"action_path"`
|
|
|
|
ActionRef string `json:"action_ref"`
|
|
|
|
ActionRepository string `json:"action_repository"`
|
|
|
|
Job string `json:"job"`
|
|
|
|
JobName string `json:"job_name"`
|
|
|
|
RepositoryOwner string `json:"repository_owner"`
|
|
|
|
RetentionDays string `json:"retention_days"`
|
|
|
|
RunnerPerflog string `json:"runner_perflog"`
|
|
|
|
RunnerTrackingID string `json:"runner_tracking_id"`
|
2020-02-14 16:41:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (rc *RunContext) getGithubContext() *githubContext {
|
2021-05-07 04:02:29 +08:00
|
|
|
ghc := &githubContext{
|
|
|
|
Event: make(map[string]interface{}),
|
2021-05-25 01:09:03 +08:00
|
|
|
EventPath: ActPath + "/workflow/event.json",
|
2021-05-07 04:02:29 +08:00
|
|
|
Workflow: rc.Run.Workflow.Name,
|
|
|
|
RunID: rc.Config.Env["GITHUB_RUN_ID"],
|
|
|
|
RunNumber: rc.Config.Env["GITHUB_RUN_NUMBER"],
|
|
|
|
Actor: rc.Config.Actor,
|
|
|
|
EventName: rc.Config.EventName,
|
|
|
|
Workspace: rc.Config.ContainerWorkdir(),
|
|
|
|
Action: rc.CurrentStep,
|
|
|
|
Token: rc.Config.Secrets["GITHUB_TOKEN"],
|
|
|
|
ActionPath: rc.Config.Env["GITHUB_ACTION_PATH"],
|
|
|
|
ActionRef: rc.Config.Env["RUNNER_ACTION_REF"],
|
|
|
|
ActionRepository: rc.Config.Env["RUNNER_ACTION_REPOSITORY"],
|
|
|
|
RepositoryOwner: rc.Config.Env["GITHUB_REPOSITORY_OWNER"],
|
|
|
|
RetentionDays: rc.Config.Env["GITHUB_RETENTION_DAYS"],
|
|
|
|
RunnerPerflog: rc.Config.Env["RUNNER_PERFLOG"],
|
|
|
|
RunnerTrackingID: rc.Config.Env["RUNNER_TRACKING_ID"],
|
2020-03-07 06:17:57 +08:00
|
|
|
}
|
2021-05-06 07:11:43 +08:00
|
|
|
|
2021-05-07 04:02:29 +08:00
|
|
|
if ghc.RunID == "" {
|
|
|
|
ghc.RunID = "1"
|
2020-09-23 05:13:29 +08:00
|
|
|
}
|
2021-05-06 07:11:43 +08:00
|
|
|
|
2021-05-07 04:02:29 +08:00
|
|
|
if ghc.RunNumber == "" {
|
|
|
|
ghc.RunNumber = "1"
|
2020-09-23 05:13:29 +08:00
|
|
|
}
|
2021-05-06 07:11:43 +08:00
|
|
|
|
2021-05-07 04:02:29 +08:00
|
|
|
if ghc.RetentionDays == "" {
|
|
|
|
ghc.RetentionDays = "0"
|
|
|
|
}
|
|
|
|
|
|
|
|
if ghc.RunnerPerflog == "" {
|
|
|
|
ghc.RunnerPerflog = "/dev/null"
|
2020-02-14 16:41:20 +08:00
|
|
|
}
|
|
|
|
|
2020-05-12 15:14:56 +08:00
|
|
|
// Backwards compatibility for configs that require
|
|
|
|
// a default rather than being run as a cmd
|
|
|
|
if ghc.Actor == "" {
|
|
|
|
ghc.Actor = "nektos/act"
|
|
|
|
}
|
|
|
|
|
2020-02-14 16:41:20 +08:00
|
|
|
repoPath := rc.Config.Workdir
|
2021-05-06 00:42:34 +08:00
|
|
|
repo, err := common.FindGithubRepo(repoPath, rc.Config.GitHubInstance)
|
2020-02-14 16:41:20 +08:00
|
|
|
if err != nil {
|
|
|
|
log.Warningf("unable to get git repo: %v", err)
|
|
|
|
} else {
|
|
|
|
ghc.Repository = repo
|
2021-05-07 04:02:29 +08:00
|
|
|
if ghc.RepositoryOwner == "" {
|
|
|
|
ghc.RepositoryOwner = strings.Split(repo, "/")[0]
|
|
|
|
}
|
2020-02-14 16:41:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
_, sha, err := common.FindGitRevision(repoPath)
|
|
|
|
if err != nil {
|
|
|
|
log.Warningf("unable to get git revision: %v", err)
|
|
|
|
} else {
|
|
|
|
ghc.Sha = sha
|
|
|
|
}
|
|
|
|
|
2020-05-05 03:18:13 +08:00
|
|
|
if rc.EventJSON != "" {
|
|
|
|
err = json.Unmarshal([]byte(rc.EventJSON), &ghc.Event)
|
|
|
|
if err != nil {
|
2020-11-13 00:15:09 +08:00
|
|
|
log.Errorf("Unable to Unmarshal event '%s': %v", rc.EventJSON, err)
|
2020-05-05 03:18:13 +08:00
|
|
|
}
|
2020-02-14 16:41:20 +08:00
|
|
|
}
|
2020-03-07 06:17:57 +08:00
|
|
|
|
2021-05-03 23:02:26 +08:00
|
|
|
maybeRef := nestedMapLookup(ghc.Event, ghc.EventName, "ref")
|
|
|
|
if maybeRef != nil {
|
|
|
|
log.Debugf("using github ref from event: %s", maybeRef)
|
|
|
|
ghc.Ref = maybeRef.(string)
|
2020-09-02 22:56:44 +08:00
|
|
|
} else {
|
2021-05-03 23:02:26 +08:00
|
|
|
ref, err := common.FindGitRef(repoPath)
|
|
|
|
if err != nil {
|
|
|
|
log.Warningf("unable to get git ref: %v", err)
|
|
|
|
} else {
|
|
|
|
log.Debugf("using github ref: %s", ref)
|
|
|
|
ghc.Ref = ref
|
|
|
|
}
|
|
|
|
|
|
|
|
// set the branch in the event data
|
|
|
|
if rc.Config.DefaultBranch != "" {
|
|
|
|
ghc.Event = withDefaultBranch(rc.Config.DefaultBranch, ghc.Event)
|
|
|
|
} else {
|
|
|
|
ghc.Event = withDefaultBranch("master", ghc.Event)
|
|
|
|
}
|
2020-09-02 22:56:44 +08:00
|
|
|
}
|
|
|
|
|
2020-03-07 06:17:57 +08:00
|
|
|
if ghc.EventName == "pull_request" {
|
|
|
|
ghc.BaseRef = asString(nestedMapLookup(ghc.Event, "pull_request", "base", "ref"))
|
|
|
|
ghc.HeadRef = asString(nestedMapLookup(ghc.Event, "pull_request", "head", "ref"))
|
|
|
|
}
|
|
|
|
|
2020-02-14 16:41:20 +08:00
|
|
|
return ghc
|
|
|
|
}
|
|
|
|
|
2020-03-10 08:45:42 +08:00
|
|
|
func (ghc *githubContext) isLocalCheckout(step *model.Step) bool {
|
2021-05-10 23:12:57 +08:00
|
|
|
if step.Type() == model.StepTypeInvalid {
|
2021-05-05 05:50:35 +08:00
|
|
|
// This will be errored out by the executor later, we need this here to avoid a null panic though
|
|
|
|
return false
|
|
|
|
}
|
2020-03-10 08:45:42 +08:00
|
|
|
if step.Type() != model.StepTypeUsesActionRemote {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
remoteAction := newRemoteAction(step.Uses)
|
2021-05-10 23:12:57 +08:00
|
|
|
if remoteAction == nil {
|
|
|
|
// IsCheckout() will nil panic if we dont bail out early
|
|
|
|
return false
|
|
|
|
}
|
2020-03-10 08:45:42 +08:00
|
|
|
if !remoteAction.IsCheckout() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
if repository, ok := step.With["repository"]; ok && repository != ghc.Repository {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if repository, ok := step.With["ref"]; ok && repository != ghc.Ref {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-03-07 06:17:57 +08:00
|
|
|
func asString(v interface{}) string {
|
|
|
|
if v == nil {
|
|
|
|
return ""
|
|
|
|
} else if s, ok := v.(string); ok {
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func nestedMapLookup(m map[string]interface{}, ks ...string) (rval interface{}) {
|
|
|
|
var ok bool
|
|
|
|
|
|
|
|
if len(ks) == 0 { // degenerate input
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if rval, ok = m[ks[0]]; !ok {
|
|
|
|
return nil
|
|
|
|
} else if len(ks) == 1 { // we've reached the final key
|
|
|
|
return rval
|
|
|
|
} else if m, ok = rval.(map[string]interface{}); !ok {
|
|
|
|
return nil
|
|
|
|
} else { // 1+ more keys
|
|
|
|
return nestedMapLookup(m, ks[1:]...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-02 22:56:44 +08:00
|
|
|
func withDefaultBranch(b string, event map[string]interface{}) map[string]interface{} {
|
|
|
|
repoI, ok := event["repository"]
|
|
|
|
if !ok {
|
|
|
|
repoI = make(map[string]interface{})
|
|
|
|
}
|
|
|
|
|
|
|
|
repo, ok := repoI.(map[string]interface{})
|
|
|
|
if !ok {
|
|
|
|
log.Warnf("unable to set default branch to %v", b)
|
|
|
|
return event
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the branch is already there return with no changes
|
|
|
|
if _, ok = repo["default_branch"]; ok {
|
|
|
|
return event
|
|
|
|
}
|
|
|
|
|
|
|
|
repo["default_branch"] = b
|
|
|
|
event["repository"] = repo
|
|
|
|
|
|
|
|
return event
|
|
|
|
}
|
|
|
|
|
2020-02-14 16:41:20 +08:00
|
|
|
func (rc *RunContext) withGithubEnv(env map[string]string) map[string]string {
|
|
|
|
github := rc.getGithubContext()
|
2020-09-28 23:22:42 +08:00
|
|
|
env["CI"] = "true"
|
2021-05-25 01:09:03 +08:00
|
|
|
env["GITHUB_ENV"] = ActPath + "/workflow/envs.txt"
|
|
|
|
env["GITHUB_PATH"] = ActPath + "/workflow/paths.txt"
|
2020-02-14 16:41:20 +08:00
|
|
|
env["GITHUB_WORKFLOW"] = github.Workflow
|
|
|
|
env["GITHUB_RUN_ID"] = github.RunID
|
|
|
|
env["GITHUB_RUN_NUMBER"] = github.RunNumber
|
|
|
|
env["GITHUB_ACTION"] = github.Action
|
2021-05-07 04:02:29 +08:00
|
|
|
if github.ActionPath != "" {
|
|
|
|
env["GITHUB_ACTION_PATH"] = github.ActionPath
|
|
|
|
}
|
2020-02-25 02:56:49 +08:00
|
|
|
env["GITHUB_ACTIONS"] = "true"
|
2020-02-14 16:41:20 +08:00
|
|
|
env["GITHUB_ACTOR"] = github.Actor
|
|
|
|
env["GITHUB_REPOSITORY"] = github.Repository
|
|
|
|
env["GITHUB_EVENT_NAME"] = github.EventName
|
|
|
|
env["GITHUB_EVENT_PATH"] = github.EventPath
|
|
|
|
env["GITHUB_WORKSPACE"] = github.Workspace
|
|
|
|
env["GITHUB_SHA"] = github.Sha
|
|
|
|
env["GITHUB_REF"] = github.Ref
|
2020-03-10 08:45:42 +08:00
|
|
|
env["GITHUB_TOKEN"] = github.Token
|
2021-02-01 13:59:51 +08:00
|
|
|
env["GITHUB_SERVER_URL"] = "https://github.com"
|
|
|
|
env["GITHUB_API_URL"] = "https://api.github.com"
|
|
|
|
env["GITHUB_GRAPHQL_URL"] = "https://api.github.com/graphql"
|
2021-05-07 04:02:29 +08:00
|
|
|
env["GITHUB_ACTION_REF"] = github.ActionRef
|
|
|
|
env["GITHUB_ACTION_REPOSITORY"] = github.ActionRepository
|
|
|
|
env["GITHUB_BASE_REF"] = github.BaseRef
|
|
|
|
env["GITHUB_HEAD_REF"] = github.HeadRef
|
|
|
|
env["GITHUB_JOB"] = rc.JobName
|
|
|
|
env["GITHUB_REPOSITORY_OWNER"] = github.RepositoryOwner
|
|
|
|
env["GITHUB_RETENTION_DAYS"] = github.RetentionDays
|
|
|
|
env["RUNNER_PERFLOG"] = github.RunnerPerflog
|
|
|
|
env["RUNNER_TRACKING_ID"] = github.RunnerTrackingID
|
2021-05-06 00:42:34 +08:00
|
|
|
if rc.Config.GitHubInstance != "github.com" {
|
|
|
|
env["GITHUB_SERVER_URL"] = fmt.Sprintf("https://%s", rc.Config.GitHubInstance)
|
|
|
|
env["GITHUB_API_URL"] = fmt.Sprintf("https://%s/api/v3", rc.Config.GitHubInstance)
|
|
|
|
env["GITHUB_GRAPHQL_URL"] = fmt.Sprintf("https://%s/api/graphql", rc.Config.GitHubInstance)
|
|
|
|
}
|
2021-03-18 08:14:08 +08:00
|
|
|
|
2021-11-11 01:57:22 +08:00
|
|
|
if rc.Config.ArtifactServerPath != "" {
|
|
|
|
setActionRuntimeVars(rc, env)
|
|
|
|
}
|
|
|
|
|
2021-03-18 08:14:08 +08:00
|
|
|
job := rc.Run.Job()
|
|
|
|
if job.RunsOn() != nil {
|
|
|
|
for _, runnerLabel := range job.RunsOn() {
|
|
|
|
platformName := rc.ExprEval.Interpolate(runnerLabel)
|
|
|
|
if platformName != "" {
|
2021-03-29 12:46:09 +08:00
|
|
|
if platformName == "ubuntu-latest" {
|
|
|
|
// hardcode current ubuntu-latest since we have no way to check that 'on the fly'
|
|
|
|
env["ImageOS"] = "ubuntu20"
|
|
|
|
} else {
|
2021-08-01 23:39:39 +08:00
|
|
|
platformName = strings.SplitN(strings.Replace(platformName, `-`, ``, 1), `.`, 2)[0]
|
2021-03-29 12:46:09 +08:00
|
|
|
env["ImageOS"] = platformName
|
|
|
|
}
|
2021-03-18 08:14:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-14 16:41:20 +08:00
|
|
|
return env
|
|
|
|
}
|
2020-03-10 08:45:42 +08:00
|
|
|
|
2021-11-11 01:57:22 +08:00
|
|
|
func setActionRuntimeVars(rc *RunContext, env map[string]string) {
|
|
|
|
actionsRuntimeURL := os.Getenv("ACTIONS_RUNTIME_URL")
|
|
|
|
if actionsRuntimeURL == "" {
|
|
|
|
actionsRuntimeURL = fmt.Sprintf("http://%s:%s/", common.GetOutboundIP().String(), rc.Config.ArtifactServerPort)
|
|
|
|
}
|
|
|
|
env["ACTIONS_RUNTIME_URL"] = actionsRuntimeURL
|
|
|
|
|
|
|
|
actionsRuntimeToken := os.Getenv("ACTIONS_RUNTIME_TOKEN")
|
|
|
|
if actionsRuntimeToken == "" {
|
|
|
|
actionsRuntimeToken = "token"
|
|
|
|
}
|
|
|
|
env["ACTIONS_RUNTIME_TOKEN"] = actionsRuntimeToken
|
|
|
|
}
|
|
|
|
|
2020-03-10 08:45:42 +08:00
|
|
|
func (rc *RunContext) localCheckoutPath() (string, bool) {
|
|
|
|
ghContext := rc.getGithubContext()
|
|
|
|
for _, step := range rc.Run.Job().Steps {
|
|
|
|
if ghContext.isLocalCheckout(step) {
|
|
|
|
return step.With["path"], true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "", false
|
|
|
|
}
|