blob: e7d5456d6b407dbdbc9da2c85ea92d0be0d69dd6 [file] [log] [blame]
// Copyright 2020 The LUCI Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package ledcli
import (
"context"
"net/http"
"os"
"strings"
"github.com/maruel/subcommands"
"go.chromium.org/luci/auth"
"go.chromium.org/luci/client/cmd/swarming/swarmingimpl"
"go.chromium.org/luci/common/data/text"
"go.chromium.org/luci/common/logging"
"go.chromium.org/luci/common/system/terminal"
"go.chromium.org/luci/led/job"
"go.chromium.org/luci/led/ledcmd"
)
func launchCmd(opts cmdBaseOptions) *subcommands.Command {
return &subcommands.Command{
UsageLine: "launch",
ShortDesc: "launches a JobDefinition on swarming",
LongDesc: `Launches a given JobDefinition on swarming.
Example:
led get-builder ... |
led edit ... |
led launch
If stdout is not a tty (e.g. a file), this command writes a JSON object
containing information about the launched task to stdout.
`,
CommandRun: func() subcommands.CommandRun {
ret := &cmdLaunch{}
ret.initFlags(opts)
return ret
},
}
}
type cmdLaunch struct {
cmdBase
modernize bool
dump bool
noLEDTag bool
resultdb job.RDBEnablement
}
func (c *cmdLaunch) initFlags(opts cmdBaseOptions) {
c.Flags.BoolVar(&c.modernize, "modernize", false, "Update the launched task to modern LUCI standards.")
c.Flags.BoolVar(&c.noLEDTag, "no-led-tag", false, "Don't add user_agent:led tag")
c.Flags.BoolVar(&c.dump, "dump", false, "Dump swarming task to stdout instead of running it.")
c.resultdb = ""
c.Flags.Var(&c.resultdb, "resultdb", text.Doc(`
Flag for Swarming/ResultDB integration on the launched task. Can be "on" or "off".
If "on", resultdb will be forcefully enabled.
If "off", resultdb will be forcefully disabled.
If unspecified, resultdb will be enabled if the original build had resultdb enabled.`))
c.cmdBase.initFlags(opts)
}
func (c *cmdLaunch) jobInput() bool { return true }
func (c *cmdLaunch) positionalRange() (min, max int) { return 0, 0 }
func (c *cmdLaunch) validateFlags(ctx context.Context, _ []string, _ subcommands.Env) (err error) {
return
}
func (c *cmdLaunch) execute(ctx context.Context, authClient *http.Client, _ auth.Options, inJob *job.Definition) (out interface{}, err error) {
uid, err := ledcmd.GetUID(ctx, c.authenticator)
if err != nil {
return nil, err
}
// Currently modernize only means 'upgrade to bbagent from kitchen'.
if bb := inJob.GetBuildbucket(); c.modernize && bb != nil {
bb.LegacyKitchen = false
}
task, meta, err := ledcmd.LaunchSwarming(ctx, authClient, inJob, ledcmd.LaunchSwarmingOpts{
DryRun: c.dump,
UserID: uid,
FinalBuildProto: "build.proto.json",
KitchenSupport: c.kitchenSupport,
ParentTaskId: os.Getenv(swarmingimpl.TaskIDEnvVar),
ResultDB: c.resultdb,
NoLEDTag: c.noLEDTag,
})
if err != nil {
return nil, err
}
if c.dump {
return task, nil
}
swarmingHostname := inJob.Info().SwarmingHostname()
logging.Infof(ctx, "Launched swarming task: https://%s/task?id=%s",
swarmingHostname, meta.TaskId)
miloHost := "ci.chromium.org"
if strings.Contains(swarmingHostname, "-dev") {
miloHost = "luci-milo-dev.appspot.com"
}
logging.Infof(ctx, "LUCI UI: https://%s/swarming/task/%s?server=%s",
miloHost, meta.TaskId, swarmingHostname)
ret := &struct {
Swarming struct {
// The swarming task ID of the launched task.
TaskID string `json:"task_id"`
// The hostname of the swarming server
Hostname string `json:"host_name"`
} `json:"swarming"`
}{}
if !terminal.IsTerminal(int(os.Stdout.Fd())) {
ret.Swarming.TaskID = meta.TaskId
ret.Swarming.Hostname = swarmingHostname
} else {
ret = nil
}
return ret, nil
}
func (c *cmdLaunch) Run(a subcommands.Application, args []string, env subcommands.Env) int {
return c.doContextExecute(a, c, args, env)
}