mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 09:17:49 +08:00
bake: replace list-targets and list-variables flags with list=<type>
also put this flag out of experimental Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
parent
883806524a
commit
a41fc81796
@ -25,7 +25,6 @@ import (
|
|||||||
"github.com/docker/buildx/controller/pb"
|
"github.com/docker/buildx/controller/pb"
|
||||||
"github.com/docker/buildx/localstate"
|
"github.com/docker/buildx/localstate"
|
||||||
"github.com/docker/buildx/util/buildflags"
|
"github.com/docker/buildx/util/buildflags"
|
||||||
"github.com/docker/buildx/util/cobrautil"
|
|
||||||
"github.com/docker/buildx/util/cobrautil/completion"
|
"github.com/docker/buildx/util/cobrautil/completion"
|
||||||
"github.com/docker/buildx/util/confutil"
|
"github.com/docker/buildx/util/confutil"
|
||||||
"github.com/docker/buildx/util/desktop"
|
"github.com/docker/buildx/util/desktop"
|
||||||
@ -44,9 +43,7 @@ import (
|
|||||||
type bakeOptions struct {
|
type bakeOptions struct {
|
||||||
files []string
|
files []string
|
||||||
overrides []string
|
overrides []string
|
||||||
printOnly bool
|
|
||||||
listTargets bool
|
|
||||||
listVars bool
|
|
||||||
sbom string
|
sbom string
|
||||||
provenance string
|
provenance string
|
||||||
allow []string
|
allow []string
|
||||||
@ -56,6 +53,13 @@ type bakeOptions struct {
|
|||||||
exportPush bool
|
exportPush bool
|
||||||
exportLoad bool
|
exportLoad bool
|
||||||
callFunc string
|
callFunc string
|
||||||
|
|
||||||
|
print bool
|
||||||
|
list string
|
||||||
|
|
||||||
|
// TODO: remove deprecated flags
|
||||||
|
listTargets bool
|
||||||
|
listVars bool
|
||||||
}
|
}
|
||||||
|
|
||||||
func runBake(ctx context.Context, dockerCli command.Cli, targets []string, in bakeOptions, cFlags commonFlags) (err error) {
|
func runBake(ctx context.Context, dockerCli command.Cli, targets []string, in bakeOptions, cFlags commonFlags) (err error) {
|
||||||
@ -123,7 +127,7 @@ func runBake(ctx context.Context, dockerCli command.Cli, targets []string, in ba
|
|||||||
|
|
||||||
// instance only needed for reading remote bake files or building
|
// instance only needed for reading remote bake files or building
|
||||||
var driverType string
|
var driverType string
|
||||||
if url != "" || !(in.printOnly || in.listTargets || in.listVars) {
|
if url != "" || !(in.print || in.list != "") {
|
||||||
b, err := builder.New(dockerCli,
|
b, err := builder.New(dockerCli,
|
||||||
builder.WithName(in.builder),
|
builder.WithName(in.builder),
|
||||||
builder.WithContextPathHash(contextPathHash),
|
builder.WithContextPathHash(contextPathHash),
|
||||||
@ -184,7 +188,7 @@ func runBake(ctx context.Context, dockerCli command.Cli, targets []string, in ba
|
|||||||
"BAKE_LOCAL_PLATFORM": platforms.Format(platforms.DefaultSpec()),
|
"BAKE_LOCAL_PLATFORM": platforms.Format(platforms.DefaultSpec()),
|
||||||
}
|
}
|
||||||
|
|
||||||
if in.listTargets || in.listVars {
|
if in.list != "" {
|
||||||
cfg, pm, err := bake.ParseFiles(files, defaults)
|
cfg, pm, err := bake.ParseFiles(files, defaults)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@ -192,10 +196,13 @@ func runBake(ctx context.Context, dockerCli command.Cli, targets []string, in ba
|
|||||||
if err = printer.Wait(); err != nil {
|
if err = printer.Wait(); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if in.listTargets {
|
switch in.list {
|
||||||
|
case "targets":
|
||||||
return printTargetList(dockerCli.Out(), cfg)
|
return printTargetList(dockerCli.Out(), cfg)
|
||||||
} else if in.listVars {
|
case "variables":
|
||||||
return printVars(dockerCli.Out(), pm.AllVariables)
|
return printVars(dockerCli.Out(), pm.AllVariables)
|
||||||
|
default:
|
||||||
|
return errors.Errorf("invalid list mode %q", in.list)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -231,7 +238,7 @@ func runBake(ctx context.Context, dockerCli command.Cli, targets []string, in ba
|
|||||||
Target: tgts,
|
Target: tgts,
|
||||||
}
|
}
|
||||||
|
|
||||||
if in.printOnly {
|
if in.print {
|
||||||
if err = printer.Wait(); err != nil {
|
if err = printer.Wait(); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@ -427,6 +434,13 @@ func bakeCmd(dockerCli command.Cli, rootOpts *rootOptions) *cobra.Command {
|
|||||||
if !cmd.Flags().Lookup("pull").Changed {
|
if !cmd.Flags().Lookup("pull").Changed {
|
||||||
cFlags.pull = nil
|
cFlags.pull = nil
|
||||||
}
|
}
|
||||||
|
if options.list == "" {
|
||||||
|
if options.listTargets {
|
||||||
|
options.list = "targets"
|
||||||
|
} else if options.listVars {
|
||||||
|
options.list = "variables"
|
||||||
|
}
|
||||||
|
}
|
||||||
options.builder = rootOpts.builder
|
options.builder = rootOpts.builder
|
||||||
options.metadataFile = cFlags.metadataFile
|
options.metadataFile = cFlags.metadataFile
|
||||||
// Other common flags (noCache, pull and progress) are processed in runBake function.
|
// Other common flags (noCache, pull and progress) are processed in runBake function.
|
||||||
@ -439,7 +453,6 @@ func bakeCmd(dockerCli command.Cli, rootOpts *rootOptions) *cobra.Command {
|
|||||||
|
|
||||||
flags.StringArrayVarP(&options.files, "file", "f", []string{}, "Build definition file")
|
flags.StringArrayVarP(&options.files, "file", "f", []string{}, "Build definition file")
|
||||||
flags.BoolVar(&options.exportLoad, "load", false, `Shorthand for "--set=*.output=type=docker"`)
|
flags.BoolVar(&options.exportLoad, "load", false, `Shorthand for "--set=*.output=type=docker"`)
|
||||||
flags.BoolVar(&options.printOnly, "print", false, "Print the options without building")
|
|
||||||
flags.BoolVar(&options.exportPush, "push", false, `Shorthand for "--set=*.output=type=registry"`)
|
flags.BoolVar(&options.exportPush, "push", false, `Shorthand for "--set=*.output=type=registry"`)
|
||||||
flags.StringVar(&options.sbom, "sbom", "", `Shorthand for "--set=*.attest=type=sbom"`)
|
flags.StringVar(&options.sbom, "sbom", "", `Shorthand for "--set=*.attest=type=sbom"`)
|
||||||
flags.StringVar(&options.provenance, "provenance", "", `Shorthand for "--set=*.attest=type=provenance"`)
|
flags.StringVar(&options.provenance, "provenance", "", `Shorthand for "--set=*.attest=type=provenance"`)
|
||||||
@ -450,13 +463,16 @@ func bakeCmd(dockerCli command.Cli, rootOpts *rootOptions) *cobra.Command {
|
|||||||
flags.VarPF(callAlias(&options.callFunc, "check"), "check", "", `Shorthand for "--call=check"`)
|
flags.VarPF(callAlias(&options.callFunc, "check"), "check", "", `Shorthand for "--call=check"`)
|
||||||
flags.Lookup("check").NoOptDefVal = "true"
|
flags.Lookup("check").NoOptDefVal = "true"
|
||||||
|
|
||||||
flags.BoolVar(&options.listTargets, "list-targets", false, "List available targets")
|
flags.BoolVar(&options.print, "print", false, "Print the options without building")
|
||||||
cobrautil.MarkFlagsExperimental(flags, "list-targets")
|
flags.StringVar(&options.list, "list", "", "List targets or variables")
|
||||||
flags.MarkHidden("list-targets")
|
|
||||||
|
|
||||||
|
// TODO: remove deprecated flags
|
||||||
|
flags.BoolVar(&options.listTargets, "list-targets", false, "List available targets")
|
||||||
|
flags.MarkHidden("list-targets")
|
||||||
|
flags.MarkDeprecated("list-targets", "list-targets is deprecated, use list=targets instead")
|
||||||
flags.BoolVar(&options.listVars, "list-variables", false, "List defined variables")
|
flags.BoolVar(&options.listVars, "list-variables", false, "List defined variables")
|
||||||
cobrautil.MarkFlagsExperimental(flags, "list-variables")
|
|
||||||
flags.MarkHidden("list-variables")
|
flags.MarkHidden("list-variables")
|
||||||
|
flags.MarkDeprecated("list-variables", "list-variables is deprecated, use list=variables instead")
|
||||||
|
|
||||||
commonBuildFlags(&cFlags, flags)
|
commonBuildFlags(&cFlags, flags)
|
||||||
|
|
||||||
|
@ -21,6 +21,7 @@ Build from a file
|
|||||||
| [`--check`](#check) | `bool` | | Shorthand for `--call=check` |
|
| [`--check`](#check) | `bool` | | Shorthand for `--call=check` |
|
||||||
| `-D`, `--debug` | `bool` | | Enable debug logging |
|
| `-D`, `--debug` | `bool` | | Enable debug logging |
|
||||||
| [`-f`](#file), [`--file`](#file) | `stringArray` | | Build definition file |
|
| [`-f`](#file), [`--file`](#file) | `stringArray` | | Build definition file |
|
||||||
|
| `--list` | `string` | | List targets or variables |
|
||||||
| `--load` | `bool` | | Shorthand for `--set=*.output=type=docker` |
|
| `--load` | `bool` | | Shorthand for `--set=*.output=type=docker` |
|
||||||
| [`--metadata-file`](#metadata-file) | `string` | | Write build result metadata to a file |
|
| [`--metadata-file`](#metadata-file) | `string` | | Write build result metadata to a file |
|
||||||
| [`--no-cache`](#no-cache) | `bool` | | Do not use cache when building the image |
|
| [`--no-cache`](#no-cache) | `bool` | | Do not use cache when building the image |
|
||||||
|
@ -1504,7 +1504,7 @@ target "abc" {
|
|||||||
out, err := bakeCmd(
|
out, err := bakeCmd(
|
||||||
sb,
|
sb,
|
||||||
withDir(dir),
|
withDir(dir),
|
||||||
withArgs("--list-targets"),
|
withArgs("--list=targets"),
|
||||||
)
|
)
|
||||||
require.NoError(t, err, out)
|
require.NoError(t, err, out)
|
||||||
|
|
||||||
@ -1533,7 +1533,7 @@ target "default" {
|
|||||||
out, err := bakeCmd(
|
out, err := bakeCmd(
|
||||||
sb,
|
sb,
|
||||||
withDir(dir),
|
withDir(dir),
|
||||||
withArgs("--list-variables"),
|
withArgs("--list=variables"),
|
||||||
)
|
)
|
||||||
require.NoError(t, err, out)
|
require.NoError(t, err, out)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user