Skip to content

Commit

Permalink
build: address some review nits
Browse files Browse the repository at this point in the history
Signed-off-by: Tibor Vass <[email protected]>
  • Loading branch information
Tibor Vass committed Jun 13, 2018
1 parent 5a103e1 commit b3a5c15
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 18 deletions.
2 changes: 1 addition & 1 deletion cli/command/formatter/disk_usage.go
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ func (c *diskUsageBuilderContext) Size() string {
}

func (c *diskUsageBuilderContext) Reclaimable() string {
inUseBytes := int64(0)
var inUseBytes int64
for _, bc := range c.buildCache {
if bc.InUse {
inUseBytes += bc.Size
Expand Down
1 change: 1 addition & 0 deletions cli/command/image/build/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ func DetectArchiveReader(input io.ReadCloser) (rc io.ReadCloser, isArchive bool,
// name specified by DefaultDockerfileName and returns the path to the
// temporary directory containing the Dockerfile.
func WriteTempDockerfile(rc io.ReadCloser) (dockerfileDir string, err error) {
// err is a named return value, due to the defer call below.
dockerfileDir, err = ioutil.TempDir("", "docker-build-tempdockerfile-")
if err != nil {
return "", errors.Errorf("unable to create temporary context directory: %v", err)
Expand Down
22 changes: 5 additions & 17 deletions cli/command/image/build_buildkit.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ func runBuildBuildKit(dockerCli command.Cli, options buildOptions) error {
return errors.Errorf("buildkit not supported by daemon")
}

buildID := stringid.GenerateRandomID()

var (
remote string
body io.Reader
Expand Down Expand Up @@ -118,13 +116,6 @@ func runBuildBuildKit(dockerCli command.Cli, options buildOptions) error {
}))
}

// statusContext, cancelStatus := context.WithCancel(ctx)
// defer cancelStatus()

// if span := opentracing.SpanFromContext(ctx); span != nil {
// statusContext = opentracing.ContextWithSpan(statusContext, span)
// }

s.Allow(authprovider.NewDockerAuthProvider())

eg, ctx := errgroup.WithContext(ctx)
Expand All @@ -133,6 +124,7 @@ func runBuildBuildKit(dockerCli command.Cli, options buildOptions) error {
return s.Run(context.TODO(), dockerCli.Client().DialSession)
})

buildID := stringid.GenerateRandomID()
if body != nil {
eg.Go(func() error {
buildOptions := types.ImageBuildOptions{
Expand Down Expand Up @@ -233,20 +225,15 @@ func doBuild(ctx context.Context, eg *errgroup.Group, dockerCli command.Cli, opt
if jerr.Code == 0 {
jerr.Code = 1
}
// if options.quiet {
// fmt.Fprintf(dockerCli.Err(), "%s%s", progBuff, buildBuff)
// }
return cli.StatusError{Status: jerr.Message, StatusCode: jerr.Code}
}
return err
}

return nil
return err
}

func resetUIDAndGID(s *fsutil.Stat) bool {
s.Uid = uint32(0)
s.Gid = uint32(0)
s.Uid = 0
s.Gid = 0
return true
}

Expand All @@ -268,6 +255,7 @@ func (t *tracer) write(msg jsonmessage.JSONMessage) {
}

var dt []byte
// ignoring all messages that are not understood
if err := json.Unmarshal(*msg.Aux, &dt); err != nil {
return
}
Expand Down

0 comments on commit b3a5c15

Please sign in to comment.