mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-09 21:17:09 +08:00
vendor: buildkit, docker/docker and docker/cli v27.0.1
diffs: - https://github.com/docker/cli/compare/v26.1.4..v27.0.1 - https://github.com/docker/docker/compare/v26.1.4..v27.0.1 - https://github.com/moby/buildkit/compare/v0.14.1...aaaf86e5470bffbb395f5c15ad4a1c152642ea30 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
9
vendor/github.com/moby/buildkit/util/testutil/integration/run.go
generated
vendored
9
vendor/github.com/moby/buildkit/util/testutil/integration/run.go
generated
vendored
@ -4,6 +4,7 @@ import (
|
||||
"bytes"
|
||||
"context"
|
||||
"fmt"
|
||||
"maps"
|
||||
"math/rand"
|
||||
"os"
|
||||
"os/exec"
|
||||
@ -137,9 +138,7 @@ func WithMirroredImages(m map[string]string) TestOpt {
|
||||
if tc.mirroredImages == nil {
|
||||
tc.mirroredImages = map[string]string{}
|
||||
}
|
||||
for k, v := range m {
|
||||
tc.mirroredImages[k] = v
|
||||
}
|
||||
maps.Copy(tc.mirroredImages, m)
|
||||
}
|
||||
}
|
||||
|
||||
@ -418,9 +417,7 @@ func prepareValueMatrix(tc testConf) []matrixValue {
|
||||
for _, c := range current {
|
||||
vv := newMatrixValue(featureName, featureValue, v)
|
||||
vv.fn = append(vv.fn, c.fn...)
|
||||
for k, v := range c.values {
|
||||
vv.values[k] = v
|
||||
}
|
||||
maps.Copy(vv.values, c.values)
|
||||
m = append(m, vv)
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user