Skip to content

Commit

Permalink
build: opt to set progress warnings in response
Browse files Browse the repository at this point in the history
Signed-off-by: CrazyMax <[email protected]>
  • Loading branch information
crazy-max committed Jun 24, 2024
1 parent d155747 commit 77d093d
Show file tree
Hide file tree
Showing 9 changed files with 271 additions and 30 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ jobs:
endpoint: tcp://localhost:1234
- driver: docker-container
metadata-provenance: max
- driver: docker-container
metadata-warnings: true
exclude:
- driver: docker
multi-node: mnode-true
Expand Down Expand Up @@ -134,6 +136,9 @@ jobs:
if [ -n "${{ matrix.metadata-provenance }}" ]; then
echo "BUILDX_METADATA_PROVENANCE=${{ matrix.metadata-provenance }}" >> $GITHUB_ENV
fi
if [ -n "${{ matrix.metadata-warnings }}" ]; then
echo "BUILDX_METADATA_WARNINGS=${{ matrix.metadata-warnings }}" >> $GITHUB_ENV
fi
-
name: Install k3s
if: matrix.driver == 'kubernetes'
Expand Down
32 changes: 19 additions & 13 deletions commands/bake.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import (
"github.com/docker/buildx/util/progress"
"github.com/docker/buildx/util/tracing"
"github.com/docker/cli/cli/command"
"github.com/moby/buildkit/client"
"github.com/moby/buildkit/identity"
"github.com/moby/buildkit/util/progress/progressui"
"github.com/pkg/errors"
Expand Down Expand Up @@ -130,15 +131,30 @@ func runBake(ctx context.Context, dockerCli command.Cli, targets []string, in ba
return err
}

var resp map[string]*client.SolveResponse

defer func() {
if printer != nil {
err1 := printer.Wait()
if err == nil {
err = err1
}
if err == nil && progressMode != progressui.QuietMode && progressMode != progressui.RawJSONMode {
if err != nil {
return
}
if progressMode != progressui.QuietMode && progressMode != progressui.RawJSONMode {
desktop.PrintBuildDetails(os.Stderr, printer.BuildRefs(), term)
}
if resp != nil && len(in.metadataFile) > 0 {
dt := make(map[string]interface{})
for t, r := range resp {
dt[t] = decodeExporterResponse(r.ExporterResponse)
}
if warnings := printer.Warnings(); len(warnings) > 0 && confutil.MetadataWarningsEnabled() {
dt["buildx.build.warnings"] = warnings
}
err = writeMetadataFile(in.metadataFile, dt)
}
}
}()

Expand Down Expand Up @@ -229,22 +245,12 @@ func runBake(ctx context.Context, dockerCli command.Cli, targets []string, in ba
return err
}

resp, err := build.Build(ctx, nodes, bo, dockerutil.NewClient(dockerCli), confutil.ConfigDir(dockerCli), printer)
resp, err = build.Build(ctx, nodes, bo, dockerutil.NewClient(dockerCli), confutil.ConfigDir(dockerCli), printer)
if err != nil {
return wrapBuildError(err, true)
}

if len(in.metadataFile) > 0 {
dt := make(map[string]interface{})
for t, r := range resp {
dt[t] = decodeExporterResponse(r.ExporterResponse)
}
if err := writeMetadataFile(in.metadataFile, dt); err != nil {
return err
}
}

return err
return
}

func bakeCmd(dockerCli command.Cli, rootOpts *rootOptions) *cobra.Command {
Expand Down
6 changes: 5 additions & 1 deletion commands/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,11 @@ func runBuild(ctx context.Context, dockerCli command.Cli, options buildOptions)
return err
}
} else if options.metadataFile != "" {
if err := writeMetadataFile(options.metadataFile, decodeExporterResponse(resp.ExporterResponse)); err != nil {
dt := decodeExporterResponse(resp.ExporterResponse)
if warnings := printer.Warnings(); len(warnings) > 0 && confutil.MetadataWarningsEnabled() {
dt["buildx.build.warnings"] = warnings
}
if err := writeMetadataFile(options.metadataFile, dt); err != nil {
return err
}
}
Expand Down
7 changes: 7 additions & 0 deletions docs/reference/buildx_bake.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ $ cat metadata.json

```json
{
"buildx.build.warnings": {},
"db": {
"buildx.build.provenance": {},
"buildx.build.ref": "mybuilder/mybuilder0/0fjb6ubs52xx3vygf6fgdl611",
Expand Down Expand Up @@ -161,6 +162,12 @@ $ cat metadata.json
> * `max` sets full provenance.
> * `disabled`, `false` or `0` does not set any provenance.
> **Note**
>
> Build warnings (`buildx.build.warnings`) are not included by default. Set the
> `BUILDX_METADATA_WARNING` environment variable to `1` or `true` to
> include build record warnings.
### <a name="no-cache"></a> Don't use cache when building the image (--no-cache)

Same as `build --no-cache`. Don't use cache when building the image.
Expand Down
7 changes: 7 additions & 0 deletions docs/reference/buildx_build.md
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ $ cat metadata.json
{
"buildx.build.provenance": {},
"buildx.build.ref": "mybuilder/mybuilder0/0fjb6ubs52xx3vygf6fgdl611",
"buildx.build.warnings": {},
"containerimage.config.digest": "sha256:2937f66a9722f7f4a2df583de2f8cb97fc9196059a410e7f00072fc918930e66",
"containerimage.descriptor": {
"annotations": {
Expand All @@ -353,6 +354,12 @@ $ cat metadata.json
> * `max` sets full provenance.
> * `disabled`, `false` or `0` does not set any provenance.
> **Note**
>
> Build warnings (`buildx.build.warnings`) are not included by default. Set the
> `BUILDX_METADATA_WARNING` environment variable to `1` or `true` to
> include build record warnings.
### <a name="no-cache-filter"></a> Ignore build cache for specific stages (--no-cache-filter)

The `--no-cache-filter` lets you specify one or more stages of a multi-stage
Expand Down
8 changes: 4 additions & 4 deletions hack/test-driver
Original file line number Diff line number Diff line change
Expand Up @@ -109,21 +109,21 @@ buildxCmd inspect --bootstrap --builder="${builderName}"

# create dockerfile
cat > "${dockerfile}" <<EOL
FROM busybox as build
fRom busybox as build
ARG TARGETPLATFORM
ARG BUILDPLATFORM
RUN echo "I am running on \$BUILDPLATFORM, building for \$TARGETPLATFORM" > /log
FROM busybox AS log
FROM busybox As log
COPY --from=build /log /log
RUN cat /log
RUN uname -a
FROM busybox AS hello
FROm busybox AS hello
RUN echo hello > /hello
FROM scratch
COPY --from=log /log /log
CoPY --from=log /log /log
COPY --from=hello /hello /hello
EOL

Expand Down
153 changes: 147 additions & 6 deletions tests/bake.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (

"github.com/containerd/continuity/fs/fstest"
"github.com/docker/buildx/util/gitutil"
"github.com/moby/buildkit/client"
"github.com/moby/buildkit/identity"
provenancetypes "github.com/moby/buildkit/solver/llbsolver/provenance/types"
"github.com/moby/buildkit/util/contentutil"
Expand Down Expand Up @@ -42,7 +43,9 @@ var bakeTests = []func(t *testing.T, sb integration.Sandbox){
testBakeEmpty,
testBakeShmSize,
testBakeUlimits,
testBakeMetadata,
testBakeMetadataProvenance,
testBakeMetadataWarnings,
bakeMetadataWarningsDedup,
testBakeMultiExporters,
testBakeLoadPush,
}
Expand Down Expand Up @@ -633,19 +636,22 @@ target "default" {
require.Contains(t, string(dt), `1024`)
}

func testBakeMetadata(t *testing.T, sb integration.Sandbox) {
func testBakeMetadataProvenance(t *testing.T, sb integration.Sandbox) {
t.Run("default", func(t *testing.T) {
bakeMetadataProvenance(t, sb, "")
})
t.Run("max", func(t *testing.T) {
bakeMetadata(t, sb, "max")
bakeMetadataProvenance(t, sb, "max")
})
t.Run("min", func(t *testing.T) {
bakeMetadata(t, sb, "min")
bakeMetadataProvenance(t, sb, "min")
})
t.Run("disabled", func(t *testing.T) {
bakeMetadata(t, sb, "disabled")
bakeMetadataProvenance(t, sb, "disabled")
})
}

func bakeMetadata(t *testing.T, sb integration.Sandbox, metadataMode string) {
func bakeMetadataProvenance(t *testing.T, sb integration.Sandbox, metadataMode string) {
dockerfile := []byte(`
FROM scratch
COPY foo /foo
Expand Down Expand Up @@ -706,6 +712,141 @@ target "default" {
require.Equal(t, provenancetypes.BuildKitBuildType, prv.BuildType)
}

func testBakeMetadataWarnings(t *testing.T, sb integration.Sandbox) {
t.Run("default", func(t *testing.T) {
bakeMetadataWarnings(t, sb, "")
})
t.Run("true", func(t *testing.T) {
bakeMetadataWarnings(t, sb, "true")
})
t.Run("false", func(t *testing.T) {
bakeMetadataWarnings(t, sb, "false")
})
}

func bakeMetadataWarnings(t *testing.T, sb integration.Sandbox, mode string) {
dockerfile := []byte(`
frOM busybox as base
cOpy Dockerfile .
from scratch
COPy --from=base \
/Dockerfile \
/
`)
bakefile := []byte(`
target "default" {
}
`)
dir := tmpdir(
t,
fstest.CreateFile("docker-bake.hcl", bakefile, 0600),
fstest.CreateFile("Dockerfile", dockerfile, 0600),
)

dirDest := t.TempDir()

outFlag := "default.output=type=docker"
if sb.DockerAddress() == "" {
// there is no Docker atm to load the image
outFlag += ",dest=" + dirDest + "/image.tar"
}

cmd := buildxCmd(
sb,
withDir(dir),
withArgs("bake", "--metadata-file", filepath.Join(dirDest, "md.json"), "--set", outFlag),
withEnv("BUILDX_METADATA_WARNINGS="+mode),
)
out, err := cmd.CombinedOutput()
require.NoError(t, err, out)

dt, err := os.ReadFile(filepath.Join(dirDest, "md.json"))
require.NoError(t, err)

type mdT struct {
BuildWarnings []client.VertexWarning `json:"buildx.build.warnings"`
Default struct {
BuildRef string `json:"buildx.build.ref"`
} `json:"default"`
}
var md mdT
err = json.Unmarshal(dt, &md)
require.NoError(t, err)

require.NotEmpty(t, md.Default.BuildRef)
if mode == "" || mode == "false" {
require.Empty(t, md.BuildWarnings)
return
} else {
require.NotEmpty(t, md.BuildWarnings)

Check failure on line 781 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.12.5, remote, ./tests)

Failed: tests/TestIntegration/TestBakeMetadataWarnings/worker=remote/true

=== RUN TestIntegration/TestBakeMetadataWarnings/worker=remote/true bake.go:781: Error Trace: /src/tests/bake.go:781 /src/tests/bake.go:720 Error: Should NOT be empty, but was [] Test: TestIntegration/TestBakeMetadataWarnings/worker=remote/true --- FAIL: TestIntegration/TestBakeMetadataWarnings/worker=remote/true (0.20s)

Check failure on line 781 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.13.1, remote, ./tests, experimental)

Failed: tests/TestIntegration/TestBakeMetadataWarnings/worker=remote/true

=== RUN TestIntegration/TestBakeMetadataWarnings/worker=remote/true bake.go:781: Error Trace: /src/tests/bake.go:781 /src/tests/bake.go:720 Error: Should NOT be empty, but was [] Test: TestIntegration/TestBakeMetadataWarnings/worker=remote/true --- FAIL: TestIntegration/TestBakeMetadataWarnings/worker=remote/true (0.28s)

Check failure on line 781 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.13.1, remote, ./tests)

Failed: tests/TestIntegration/TestBakeMetadataWarnings/worker=remote/true

=== RUN TestIntegration/TestBakeMetadataWarnings/worker=remote/true bake.go:781: Error Trace: /src/tests/bake.go:781 /src/tests/bake.go:720 Error: Should NOT be empty, but was [] Test: TestIntegration/TestBakeMetadataWarnings/worker=remote/true --- FAIL: TestIntegration/TestBakeMetadataWarnings/worker=remote/true (1.25s)

Check failure on line 781 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.12.5, remote, ./tests, experimental)

Failed: tests/TestIntegration/TestBakeMetadataWarnings/worker=remote/true

=== RUN TestIntegration/TestBakeMetadataWarnings/worker=remote/true bake.go:781: Error Trace: /src/tests/bake.go:781 /src/tests/bake.go:720 Error: Should NOT be empty, but was [] Test: TestIntegration/TestBakeMetadataWarnings/worker=remote/true --- FAIL: TestIntegration/TestBakeMetadataWarnings/worker=remote/true (0.22s)

Check failure on line 781 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.12.5, docker-container, ./tests, experimental)

Failed: tests/TestIntegration/TestBakeMetadataWarnings/worker=docker-container/true

=== RUN TestIntegration/TestBakeMetadataWarnings/worker=docker-container/true bake.go:781: Error Trace: /src/tests/bake.go:781 /src/tests/bake.go:720 Error: Should NOT be empty, but was [] Test: TestIntegration/TestBakeMetadataWarnings/worker=docker-container/true --- FAIL: TestIntegration/TestBakeMetadataWarnings/worker=docker-container/true (0.32s)

Check failure on line 781 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.12.5, docker-container, ./tests)

Failed: tests/TestIntegration/TestBakeMetadataWarnings/worker=docker-container/true

=== RUN TestIntegration/TestBakeMetadataWarnings/worker=docker-container/true bake.go:781: Error Trace: /src/tests/bake.go:781 /src/tests/bake.go:720 Error: Should NOT be empty, but was [] Test: TestIntegration/TestBakeMetadataWarnings/worker=docker-container/true --- FAIL: TestIntegration/TestBakeMetadataWarnings/worker=docker-container/true (0.27s)

Check failure on line 781 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.13.1, docker-container, ./tests, experimental)

Failed: tests/TestIntegration/TestBakeMetadataWarnings/worker=docker-container/true

=== RUN TestIntegration/TestBakeMetadataWarnings/worker=docker-container/true bake.go:781: Error Trace: /src/tests/bake.go:781 /src/tests/bake.go:720 Error: Should NOT be empty, but was [] Test: TestIntegration/TestBakeMetadataWarnings/worker=docker-container/true --- FAIL: TestIntegration/TestBakeMetadataWarnings/worker=docker-container/true (0.25s)

Check failure on line 781 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.13.1, docker-container, ./tests)

Failed: tests/TestIntegration/TestBakeMetadataWarnings/worker=docker-container/true

=== RUN TestIntegration/TestBakeMetadataWarnings/worker=docker-container/true bake.go:781: Error Trace: /src/tests/bake.go:781 /src/tests/bake.go:720 Error: Should NOT be empty, but was [] Test: TestIntegration/TestBakeMetadataWarnings/worker=docker-container/true --- FAIL: TestIntegration/TestBakeMetadataWarnings/worker=docker-container/true (0.28s)
}

skipNoCompatBuildKit(t, sb, ">= 0.14.0-0", "lint")
require.Len(t, md.BuildWarnings, 3)
}

func bakeMetadataWarningsDedup(t *testing.T, sb integration.Sandbox) {
dockerfile := []byte(`
frOM busybox as base
cOpy Dockerfile .
from scratch
COPy --from=base \
/Dockerfile \
/
`)
bakefile := []byte(`
group "default" {
targets = ["base", "def"]
}
target "base" {
target = "base"
}
target "def" {
}
`)
dir := tmpdir(
t,
fstest.CreateFile("docker-bake.hcl", bakefile, 0600),
fstest.CreateFile("Dockerfile", dockerfile, 0600),
)

dirDest := t.TempDir()

outFlag := "default.output=type=docker"
if sb.DockerAddress() == "" {
// there is no Docker atm to load the image
outFlag += ",dest=" + dirDest + "/image.tar"
}

cmd := buildxCmd(
sb,
withDir(dir),
withArgs("bake", "--metadata-file", filepath.Join(dirDest, "md.json"), "--set", outFlag),
withEnv("BUILDX_METADATA_WARNINGS=true"),
)
out, err := cmd.CombinedOutput()
require.NoError(t, err, out)

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (buildx-stable-1, remote, ./tests, experimental)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=remote

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=remote === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=remote === CONT TestIntegration/BakeMetadataWarningsDedup/worker=remote bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=remote Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 114 101 109 111 116 101 45 112 48 108 53 116 98 50 107 57 51 120 105 122 110 113 100 54 104 56 103 52 49 48 50 122 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 114 101 109 111 116 101 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] sandbox.go:133: stdout: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config2020394533/buildkitd.toml --root /tmp/bktest_buildkitd3534448718 --addr unix:///tmp/bktest_buildkitd3534448718/buildkitd.sock --debug sandbox.go:133: stderr: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config2020394533/buildkitd.toml --root /tmp/bktest_buildkitd3534448718 --addr unix:///tmp/bktest_buildkitd3534448718/buildkitd.sock --debug sandbox.go:136: > StartCmd 2024-06-24 20:45:40.637181616 +0000 UTC m=+9.212703140 /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config2020394533/buildkitd.toml --root /tmp/bktest_buildkitd3534448718 --addr unix:///tmp/bktest_buildkitd3534448718/buildkitd.sock --debug sandbox.go:136: time="2024-06-24T20:45:40Z" level=warning msg="failed to get disk size: no such file or directory" sandbox.go:136: time="2024-06-24T20:45:40Z" level=warning msg="failed to get disk size: no such file or directory" sandbox.go:136: time="2024-06-24T20:45:40Z" level=info msg="auto snapshotter: using overlayfs" sandbox.go:136: time="2024-06-24T20:45:40Z" level=warning msg="using host network as the default" sandbox.go:136: time="2024-06-24T20:45:40Z" level=info msg="found worker \"rypr85akwr08k8wy49f6hbav6\", labels=map[org.mobyproject.buildkit.worker.executor:oci org.mobyproject.buildkit.worker.hostname:edc1c0daee54 org.mobyproject.buildkit.worker.network:host org.mobyproject.buildkit.worker.oci.process-mode:sandbox org.mobyproject.buildkit.worker.sandbox:true org.mobyproject.buildkit.worker.selinux.enabled:false org.mobyproject.buildkit.worker.snapshotter:overlayfs], platforms=[linux/amd64 linux/amd64/v2 linux/amd64/v3 linux/arm64 linux/riscv64 linux/ppc64le linux/s390x linux/386 linux/mips64le linux/mips64 linux/arm/v7 linux/arm/v6]" sandbox.go:136: time="2024-06-24T20:45:40Z" level=info msg="found 1 workers, default=\"rypr85akwr08k8wy49f6hbav6\"" sandbox.go:136: time="2024-06-24T20:45:40Z" level=warning msg="currently, only the default worker can be used." sandbox.go:136: time="2024-06-24T20:45:40Z" level=info msg="running server on /tmp/bktest_buildkitd3534448718/buildkitd.sock" --- FAIL: TestIntegration/BakeMetadataWarningsD

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (latest, remote, ./tests, experimental)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=remote

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=remote === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=remote === CONT TestIntegration/BakeMetadataWarningsDedup/worker=remote bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=remote Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 114 101 109 111 116 101 45 108 114 106 122 103 120 118 54 118 55 104 100 106 53 114 101 111 97 50 97 57 53 109 51 113 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 114 101 109 111 116 101 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] sandbox.go:133: stderr: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config2451711611/buildkitd.toml --root /tmp/bktest_buildkitd289350763 --addr unix:///tmp/bktest_buildkitd289350763/buildkitd.sock --debug sandbox.go:136: > StartCmd 2024-06-24 20:45:39.827127874 +0000 UTC m=+5.246262036 /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config2451711611/buildkitd.toml --root /tmp/bktest_buildkitd289350763 --addr unix:///tmp/bktest_buildkitd289350763/buildkitd.sock --debug sandbox.go:136: time="2024-06-24T20:45:39Z" level=warning msg="failed to get disk size: no such file or directory" sandbox.go:136: time="2024-06-24T20:45:39Z" level=warning msg="failed to get disk size: no such file or directory" sandbox.go:136: time="2024-06-24T20:45:39Z" level=info msg="auto snapshotter: using overlayfs" sandbox.go:136: time="2024-06-24T20:45:39Z" level=warning msg="using host network as the default" sandbox.go:136: time="2024-06-24T20:45:39Z" level=info msg="found worker \"pf5jlvn824thhpxkj8iib5vju\", labels=map[org.mobyproject.buildkit.worker.executor:oci org.mobyproject.buildkit.worker.hostname:c1330a91b33d org.mobyproject.buildkit.worker.network:host org.mobyproject.buildkit.worker.oci.process-mode:sandbox org.mobyproject.buildkit.worker.sandbox:true org.mobyproject.buildkit.worker.selinux.enabled:false org.mobyproject.buildkit.worker.snapshotter:overlayfs], platforms=[linux/amd64 linux/amd64/v2 linux/amd64/v3 linux/arm64 linux/riscv64 linux/ppc64le linux/s390x linux/386 linux/mips64le linux/mips64 linux/arm/v7 linux/arm/v6]" sandbox.go:136: time="2024-06-24T20:45:39Z" level=info msg="found 1 workers, default=\"pf5jlvn824thhpxkj8iib5vju\"" sandbox.go:136: time="2024-06-24T20:45:39Z" level=warning msg="currently, only the default worker can be used." sandbox.go:136: time="2024-06-24T20:45:39Z" level=info msg="running server on /tmp/bktest_buildkitd289350763/buildkitd.sock" sandbox.go:133: stdout: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config2451711611/buildkitd.toml --root /tmp/bktest_buildkitd289350763 --addr unix:///tmp/bktest_buildkitd289350763/buildkitd.sock --debug --- FAIL: TestIntegration/BakeMetadataWarningsDedup

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (buildx-stable-1, remote, ./tests)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=remote

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=remote === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=remote === CONT TestIntegration/BakeMetadataWarningsDedup/worker=remote bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=remote Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 114 101 109 111 116 101 45 116 106 122 116 118 48 51 114 98 55 100 104 98 103 119 118 119 114 54 56 55 113 114 118 102 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 114 101 109 111 116 101 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] sandbox.go:133: stdout: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config2507935335/buildkitd.toml --root /tmp/bktest_buildkitd634419996 --addr unix:///tmp/bktest_buildkitd634419996/buildkitd.sock --debug sandbox.go:133: stderr: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config2507935335/buildkitd.toml --root /tmp/bktest_buildkitd634419996 --addr unix:///tmp/bktest_buildkitd634419996/buildkitd.sock --debug sandbox.go:136: > StartCmd 2024-06-24 20:45:45.738599927 +0000 UTC m=+12.613247940 /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config2507935335/buildkitd.toml --root /tmp/bktest_buildkitd634419996 --addr unix:///tmp/bktest_buildkitd634419996/buildkitd.sock --debug sandbox.go:136: time="2024-06-24T20:45:45Z" level=warning msg="failed to get disk size: no such file or directory" sandbox.go:136: time="2024-06-24T20:45:45Z" level=warning msg="failed to get disk size: no such file or directory" sandbox.go:136: time="2024-06-24T20:45:45Z" level=info msg="auto snapshotter: using overlayfs" sandbox.go:136: time="2024-06-24T20:45:45Z" level=warning msg="using host network as the default" sandbox.go:136: time="2024-06-24T20:45:45Z" level=info msg="found worker \"hwyvsp1jem3ocm0776rsz5b9t\", labels=map[org.mobyproject.buildkit.worker.executor:oci org.mobyproject.buildkit.worker.hostname:dfd0a8d2b58d org.mobyproject.buildkit.worker.network:host org.mobyproject.buildkit.worker.oci.process-mode:sandbox org.mobyproject.buildkit.worker.sandbox:true org.mobyproject.buildkit.worker.selinux.enabled:false org.mobyproject.buildkit.worker.snapshotter:overlayfs], platforms=[linux/amd64 linux/amd64/v2 linux/amd64/v3 linux/arm64 linux/riscv64 linux/ppc64le linux/s390x linux/386 linux/mips64le linux/mips64 linux/arm/v7 linux/arm/v6]" sandbox.go:136: time="2024-06-24T20:45:45Z" level=info msg="found 1 workers, default=\"hwyvsp1jem3ocm0776rsz5b9t\"" sandbox.go:136: time="2024-06-24T20:45:45Z" level=warning msg="currently, only the default worker can be used." sandbox.go:136: time="2024-06-24T20:45:45Z" level=info msg="running server on /tmp/bktest_buildkitd634419996/buildkitd.sock" --- FAIL: TestIntegration/BakeMetadataWarningsDed

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.14.0, remote, ./tests)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=remote

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=remote === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=remote === CONT TestIntegration/BakeMetadataWarningsDedup/worker=remote bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=remote Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 114 101 109 111 116 101 45 119 51 111 108 108 50 103 112 51 56 98 108 120 57 98 120 106 100 52 98 54 51 121 115 57 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 114 101 109 111 116 101 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] sandbox.go:133: stderr: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config3949494747/buildkitd.toml --root /tmp/bktest_buildkitd769641654 --addr unix:///tmp/bktest_buildkitd769641654/buildkitd.sock --debug sandbox.go:136: > StartCmd 2024-06-24 20:45:42.601104244 +0000 UTC m=+6.970649860 /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config3949494747/buildkitd.toml --root /tmp/bktest_buildkitd769641654 --addr unix:///tmp/bktest_buildkitd769641654/buildkitd.sock --debug sandbox.go:136: time="2024-06-24T20:45:42Z" level=warning msg="failed to get disk size: no such file or directory" sandbox.go:136: time="2024-06-24T20:45:42Z" level=warning msg="failed to get disk size: no such file or directory" sandbox.go:136: time="2024-06-24T20:45:42Z" level=info msg="auto snapshotter: using overlayfs" sandbox.go:136: time="2024-06-24T20:45:42Z" level=warning msg="using host network as the default" sandbox.go:136: time="2024-06-24T20:45:42Z" level=info msg="found worker \"2vfq14lf7xsb5qjezk5krgff5\", labels=map[org.mobyproject.buildkit.worker.executor:oci org.mobyproject.buildkit.worker.hostname:d3d9bef51aff org.mobyproject.buildkit.worker.network:host org.mobyproject.buildkit.worker.oci.process-mode:sandbox org.mobyproject.buildkit.worker.sandbox:true org.mobyproject.buildkit.worker.selinux.enabled:false org.mobyproject.buildkit.worker.snapshotter:overlayfs], platforms=[linux/amd64 linux/amd64/v2 linux/amd64/v3 linux/arm64 linux/riscv64 linux/ppc64le linux/s390x linux/386 linux/mips64le linux/mips64 linux/arm/v7 linux/arm/v6]" sandbox.go:136: time="2024-06-24T20:45:42Z" level=info msg="found 1 workers, default=\"2vfq14lf7xsb5qjezk5krgff5\"" sandbox.go:136: time="2024-06-24T20:45:42Z" level=warning msg="currently, only the default worker can be used." sandbox.go:136: time="2024-06-24T20:45:42Z" level=info msg="running server on /tmp/bktest_buildkitd769641654/buildkitd.sock" sandbox.go:133: stdout: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config3949494747/buildkitd.toml --root /tmp/bktest_buildkitd769641654 --addr unix:///tmp/bktest_buildkitd769641654/buildkitd.sock --debug --- FAIL: TestIntegration/BakeMetadataWarningsDedup/wo

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (latest, remote, ./tests)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=remote

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=remote === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=remote === CONT TestIntegration/BakeMetadataWarningsDedup/worker=remote bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=remote Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 114 101 109 111 116 101 45 99 110 107 116 106 108 119 56 118 118 113 104 99 115 100 56 102 106 49 109 104 99 120 98 107 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 114 101 109 111 116 101 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] sandbox.go:133: stdout: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config4129919420/buildkitd.toml --root /tmp/bktest_buildkitd141647227 --addr unix:///tmp/bktest_buildkitd141647227/buildkitd.sock --debug sandbox.go:133: stderr: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config4129919420/buildkitd.toml --root /tmp/bktest_buildkitd141647227 --addr unix:///tmp/bktest_buildkitd141647227/buildkitd.sock --debug sandbox.go:136: > StartCmd 2024-06-24 20:45:44.111389468 +0000 UTC m=+7.469272385 /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config4129919420/buildkitd.toml --root /tmp/bktest_buildkitd141647227 --addr unix:///tmp/bktest_buildkitd141647227/buildkitd.sock --debug sandbox.go:136: time="2024-06-24T20:45:44Z" level=warning msg="failed to get disk size: no such file or directory" sandbox.go:136: time="2024-06-24T20:45:44Z" level=warning msg="failed to get disk size: no such file or directory" sandbox.go:136: time="2024-06-24T20:45:44Z" level=info msg="auto snapshotter: using overlayfs" sandbox.go:136: time="2024-06-24T20:45:44Z" level=warning msg="using host network as the default" sandbox.go:136: time="2024-06-24T20:45:44Z" level=info msg="found worker \"wqpt96sx4hjqde9w1q7kfbq73\", labels=map[org.mobyproject.buildkit.worker.executor:oci org.mobyproject.buildkit.worker.hostname:b53e46a7f74d org.mobyproject.buildkit.worker.network:host org.mobyproject.buildkit.worker.oci.process-mode:sandbox org.mobyproject.buildkit.worker.sandbox:true org.mobyproject.buildkit.worker.selinux.enabled:false org.mobyproject.buildkit.worker.snapshotter:overlayfs], platforms=[linux/amd64 linux/amd64/v2 linux/amd64/v3 linux/arm64 linux/riscv64 linux/ppc64le linux/s390x linux/386 linux/mips64le linux/mips64 linux/arm/v7 linux/arm/v6]" sandbox.go:136: time="2024-06-24T20:45:44Z" level=info msg="found 1 workers, default=\"wqpt96sx4hjqde9w1q7kfbq73\"" sandbox.go:136: time="2024-06-24T20:45:44Z" level=warning msg="currently, only the default worker can be used." sandbox.go:136: time="2024-06-24T20:45:44Z" level=info msg="running server on /tmp/bktest_buildkitd141647227/buildkitd.sock" --- FAIL: TestIntegration/BakeMetadataWarningsDed

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.12.5, remote, ./tests)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=remote

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=remote === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=remote === CONT TestIntegration/BakeMetadataWarningsDedup/worker=remote bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=remote Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 114 101 109 111 116 101 45 119 101 51 53 116 116 120 106 122 108 104 120 122 97 105 120 105 114 120 102 101 110 114 110 118 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 114 101 109 111 116 101 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] sandbox.go:133: stdout: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config1122506180/buildkitd.toml --root /tmp/bktest_buildkitd2035719358 --addr unix:///tmp/bktest_buildkitd2035719358/buildkitd.sock --debug sandbox.go:133: stderr: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config1122506180/buildkitd.toml --root /tmp/bktest_buildkitd2035719358 --addr unix:///tmp/bktest_buildkitd2035719358/buildkitd.sock --debug sandbox.go:136: > StartCmd 2024-06-24 20:45:41.570738462 +0000 UTC m=+7.179004528 /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config1122506180/buildkitd.toml --root /tmp/bktest_buildkitd2035719358 --addr unix:///tmp/bktest_buildkitd2035719358/buildkitd.sock --debug sandbox.go:136: time="2024-06-24T20:45:41Z" level=info msg="auto snapshotter: using overlayfs" sandbox.go:136: time="2024-06-24T20:45:41Z" level=warning msg="using host network as the default" sandbox.go:136: time="2024-06-24T20:45:41Z" level=info msg="found worker \"20jus23lfb3rwyf72fhmfh6mj\", labels=map[org.mobyproject.buildkit.worker.executor:oci org.mobyproject.buildkit.worker.hostname:e3c943495ad3 org.mobyproject.buildkit.worker.network:host org.mobyproject.buildkit.worker.oci.process-mode:sandbox org.mobyproject.buildkit.worker.sandbox:true org.mobyproject.buildkit.worker.selinux.enabled:false org.mobyproject.buildkit.worker.snapshotter:overlayfs], platforms=[linux/amd64 linux/amd64/v2 linux/amd64/v3 linux/arm64 linux/riscv64 linux/ppc64le linux/s390x linux/386 linux/mips64le linux/mips64 linux/arm/v7 linux/arm/v6]" sandbox.go:136: time="2024-06-24T20:45:41Z" level=info msg="found 1 workers, default=\"20jus23lfb3rwyf72fhmfh6mj\"" sandbox.go:136: time="2024-06-24T20:45:41Z" level=warning msg="currently, only the default worker can be used." sandbox.go:136: time="2024-06-24T20:45:41Z" level=info msg="running server on /tmp/bktest_buildkitd2035719358/buildkitd.sock" --- FAIL: TestIntegration/BakeMetadataWarningsDedup/worker=remote (0.39s)

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.14.0, remote, ./tests, experimental)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=remote

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=remote === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=remote === CONT TestIntegration/BakeMetadataWarningsDedup/worker=remote bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=remote Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 114 101 109 111 116 101 45 53 54 106 99 109 53 51 111 114 115 51 118 50 98 57 116 103 110 107 115 102 118 103 48 56 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 114 101 109 111 116 101 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] sandbox.go:133: stdout: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config3579680520/buildkitd.toml --root /tmp/bktest_buildkitd4277675331 --addr unix:///tmp/bktest_buildkitd4277675331/buildkitd.sock --debug sandbox.go:133: stderr: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config3579680520/buildkitd.toml --root /tmp/bktest_buildkitd4277675331 --addr unix:///tmp/bktest_buildkitd4277675331/buildkitd.sock --debug sandbox.go:136: > StartCmd 2024-06-24 20:45:48.947427774 +0000 UTC m=+10.591235635 /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config3579680520/buildkitd.toml --root /tmp/bktest_buildkitd4277675331 --addr unix:///tmp/bktest_buildkitd4277675331/buildkitd.sock --debug sandbox.go:136: time="2024-06-24T20:45:49Z" level=warning msg="failed to get disk size: no such file or directory" sandbox.go:136: time="2024-06-24T20:45:49Z" level=warning msg="failed to get disk size: no such file or directory" sandbox.go:136: time="2024-06-24T20:45:49Z" level=info msg="auto snapshotter: using overlayfs" sandbox.go:136: time="2024-06-24T20:45:49Z" level=warning msg="using host network as the default" sandbox.go:136: time="2024-06-24T20:45:49Z" level=info msg="found worker \"06991avq9ddhx33zlea2igqh3\", labels=map[org.mobyproject.buildkit.worker.executor:oci org.mobyproject.buildkit.worker.hostname:3d78e505b31a org.mobyproject.buildkit.worker.network:host org.mobyproject.buildkit.worker.oci.process-mode:sandbox org.mobyproject.buildkit.worker.sandbox:true org.mobyproject.buildkit.worker.selinux.enabled:false org.mobyproject.buildkit.worker.snapshotter:overlayfs], platforms=[linux/amd64 linux/amd64/v2 linux/amd64/v3 linux/arm64 linux/riscv64 linux/ppc64le linux/s390x linux/386 linux/mips64le linux/mips64 linux/arm/v7 linux/arm/v6]" sandbox.go:136: time="2024-06-24T20:45:49Z" level=info msg="found 1 workers, default=\"06991avq9ddhx33zlea2igqh3\"" sandbox.go:136: time="2024-06-24T20:45:49Z" level=warning msg="currently, only the default worker can be used." sandbox.go:136: time="2024-06-24T20:45:49Z" level=info msg="running server on /tmp/bktest_buildkitd4277675331/buildkitd.sock" --- FAIL: TestIntegration/BakeMetadataWarning

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.13.1, remote, ./tests, experimental)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=remote

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=remote === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=remote === CONT TestIntegration/BakeMetadataWarningsDedup/worker=remote bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=remote Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 114 101 109 111 116 101 45 102 122 113 111 103 111 117 108 50 106 112 103 57 115 122 107 115 122 102 104 118 113 52 109 118 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 114 101 109 111 116 101 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] sandbox.go:133: stdout: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config909300012/buildkitd.toml --root /tmp/bktest_buildkitd1492805819 --addr unix:///tmp/bktest_buildkitd1492805819/buildkitd.sock --debug sandbox.go:133: stderr: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config909300012/buildkitd.toml --root /tmp/bktest_buildkitd1492805819 --addr unix:///tmp/bktest_buildkitd1492805819/buildkitd.sock --debug sandbox.go:136: > StartCmd 2024-06-24 20:45:45.535619916 +0000 UTC m=+9.019436931 /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config909300012/buildkitd.toml --root /tmp/bktest_buildkitd1492805819 --addr unix:///tmp/bktest_buildkitd1492805819/buildkitd.sock --debug sandbox.go:136: time="2024-06-24T20:45:45Z" level=info msg="auto snapshotter: using overlayfs" sandbox.go:136: time="2024-06-24T20:45:45Z" level=warning msg="using host network as the default" sandbox.go:136: time="2024-06-24T20:45:45Z" level=info msg="found worker \"slpj50imeiw6anxa95qtkvoyg\", labels=map[org.mobyproject.buildkit.worker.executor:oci org.mobyproject.buildkit.worker.hostname:5a31bc9df879 org.mobyproject.buildkit.worker.network:host org.mobyproject.buildkit.worker.oci.process-mode:sandbox org.mobyproject.buildkit.worker.sandbox:true org.mobyproject.buildkit.worker.selinux.enabled:false org.mobyproject.buildkit.worker.snapshotter:overlayfs], platforms=[linux/amd64 linux/amd64/v2 linux/amd64/v3 linux/arm64 linux/riscv64 linux/ppc64le linux/s390x linux/386 linux/mips64le linux/mips64 linux/arm/v7 linux/arm/v6]" sandbox.go:136: time="2024-06-24T20:45:45Z" level=info msg="found 1 workers, default=\"slpj50imeiw6anxa95qtkvoyg\"" sandbox.go:136: time="2024-06-24T20:45:45Z" level=warning msg="currently, only the default worker can be used." sandbox.go:136: time="2024-06-24T20:45:45Z" level=info msg="running server on /tmp/bktest_buildkitd1492805819/buildkitd.sock" --- FAIL: TestIntegration/BakeMetadataWarningsDedup/worker=remote (0.48s)

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.13.1, remote, ./tests)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=remote

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=remote === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=remote === CONT TestIntegration/BakeMetadataWarningsDedup/worker=remote bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=remote Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 114 101 109 111 116 101 45 110 50 55 117 99 99 53 104 115 102 122 104 105 107 97 50 55 97 115 104 115 102 114 105 99 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 114 101 109 111 116 101 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] sandbox.go:133: stdout: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config4110125975/buildkitd.toml --root /tmp/bktest_buildkitd1304401014 --addr unix:///tmp/bktest_buildkitd1304401014/buildkitd.sock --debug sandbox.go:133: stderr: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config4110125975/buildkitd.toml --root /tmp/bktest_buildkitd1304401014 --addr unix:///tmp/bktest_buildkitd1304401014/buildkitd.sock --debug sandbox.go:136: > StartCmd 2024-06-24 20:45:46.157789079 +0000 UTC m=+10.001064564 /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config4110125975/buildkitd.toml --root /tmp/bktest_buildkitd1304401014 --addr unix:///tmp/bktest_buildkitd1304401014/buildkitd.sock --debug sandbox.go:136: time="2024-06-24T20:45:46Z" level=info msg="auto snapshotter: using overlayfs" sandbox.go:136: time="2024-06-24T20:45:46Z" level=warning msg="using host network as the default" sandbox.go:136: time="2024-06-24T20:45:46Z" level=info msg="found worker \"gkslpflgltoozuglwvrxxzjzp\", labels=map[org.mobyproject.buildkit.worker.executor:oci org.mobyproject.buildkit.worker.hostname:252cf70423f2 org.mobyproject.buildkit.worker.network:host org.mobyproject.buildkit.worker.oci.process-mode:sandbox org.mobyproject.buildkit.worker.sandbox:true org.mobyproject.buildkit.worker.selinux.enabled:false org.mobyproject.buildkit.worker.snapshotter:overlayfs], platforms=[linux/amd64 linux/amd64/v2 linux/amd64/v3 linux/arm64 linux/riscv64 linux/ppc64le linux/s390x linux/386 linux/mips64le linux/mips64 linux/arm/v7 linux/arm/v6]" sandbox.go:136: time="2024-06-24T20:45:46Z" level=info msg="found 1 workers, default=\"gkslpflgltoozuglwvrxxzjzp\"" sandbox.go:136: time="2024-06-24T20:45:46Z" level=warning msg="currently, only the default worker can be used." sandbox.go:136: time="2024-06-24T20:45:46Z" level=info msg="running server on /tmp/bktest_buildkitd1304401014/buildkitd.sock" --- FAIL: TestIntegration/BakeMetadataWarningsDedup/worker=remote (0.45s)

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (buildx-stable-1, docker-container, ./tests, experimental)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=docker-container

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === CONT TestIntegration/BakeMetadataWarningsDedup/worker=docker-container bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 99 111 110 116 97 105 110 101 114 45 97 107 51 101 121 52 52 116 106 102 56 55 97 51 56 118 107 49 103 100 49 113 112 52 115 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 100 111 99 107 101 114 45 99 111 110 116 97 105 110 101 114 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] --- FAIL: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container (0.70s)

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (master, remote, ./tests, experimental)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=remote

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=remote === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=remote === CONT TestIntegration/BakeMetadataWarningsDedup/worker=remote bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=remote Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 114 101 109 111 116 101 45 101 99 109 101 113 114 114 97 97 118 56 51 122 49 48 106 106 98 50 99 108 97 102 52 54 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 114 101 109 111 116 101 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] sandbox.go:133: stdout: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config113377469/buildkitd.toml --root /tmp/bktest_buildkitd2411306458 --addr unix:///tmp/bktest_buildkitd2411306458/buildkitd.sock --debug sandbox.go:133: stderr: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config113377469/buildkitd.toml --root /tmp/bktest_buildkitd2411306458 --addr unix:///tmp/bktest_buildkitd2411306458/buildkitd.sock --debug sandbox.go:136: > StartCmd 2024-06-24 20:45:53.157807363 +0000 UTC m=+8.077652078 /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config113377469/buildkitd.toml --root /tmp/bktest_buildkitd2411306458 --addr unix:///tmp/bktest_buildkitd2411306458/buildkitd.sock --debug sandbox.go:136: time="2024-06-24T20:45:53Z" level=warning msg="failed to get disk size: no such file or directory" sandbox.go:136: time="2024-06-24T20:45:53Z" level=warning msg="failed to get disk size: no such file or directory" sandbox.go:136: time="2024-06-24T20:45:53Z" level=info msg="auto snapshotter: using overlayfs" sandbox.go:136: time="2024-06-24T20:45:53Z" level=warning msg="using host network as the default" sandbox.go:136: time="2024-06-24T20:45:53Z" level=info msg="found worker \"x582f0e78gthvjgeglg3oit6c\", labels=map[org.mobyproject.buildkit.worker.executor:oci org.mobyproject.buildkit.worker.hostname:7c1d2b9c9a92 org.mobyproject.buildkit.worker.network:host org.mobyproject.buildkit.worker.oci.process-mode:sandbox org.mobyproject.buildkit.worker.sandbox:true org.mobyproject.buildkit.worker.selinux.enabled:false org.mobyproject.buildkit.worker.snapshotter:overlayfs], platforms=[linux/amd64 linux/amd64/v2 linux/amd64/v3 linux/arm64 linux/riscv64 linux/ppc64le linux/s390x linux/386 linux/mips64le linux/mips64 linux/arm/v7 linux/arm/v6]" sandbox.go:136: time="2024-06-24T20:45:53Z" level=info msg="found 1 workers, default=\"x582f0e78gthvjgeglg3oit6c\"" sandbox.go:136: time="2024-06-24T20:45:53Z" level=warning msg="currently, only the default worker can be used." sandbox.go:136: time="2024-06-24T20:45:53Z" level=info msg="running server on /tmp/bktest_buildkitd2411306458/buildkitd.sock" --- FAIL: TestIntegration/BakeMetadataWarningsDedup

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (master, remote, ./tests)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=remote

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=remote === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=remote === CONT TestIntegration/BakeMetadataWarningsDedup/worker=remote bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=remote Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 114 101 109 111 116 101 45 106 121 51 105 50 52 119 101 112 112 121 57 56 122 99 122 57 103 119 98 118 119 121 106 52 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 114 101 109 111 116 101 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] sandbox.go:133: stderr: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config3439816038/buildkitd.toml --root /tmp/bktest_buildkitd450466471 --addr unix:///tmp/bktest_buildkitd450466471/buildkitd.sock --debug sandbox.go:136: > StartCmd 2024-06-24 20:45:56.69364959 +0000 UTC m=+10.372601554 /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config3439816038/buildkitd.toml --root /tmp/bktest_buildkitd450466471 --addr unix:///tmp/bktest_buildkitd450466471/buildkitd.sock --debug sandbox.go:136: time="2024-06-24T20:45:56Z" level=warning msg="failed to get disk size: no such file or directory" sandbox.go:136: time="2024-06-24T20:45:56Z" level=warning msg="failed to get disk size: no such file or directory" sandbox.go:136: time="2024-06-24T20:45:56Z" level=info msg="auto snapshotter: using overlayfs" sandbox.go:136: time="2024-06-24T20:45:56Z" level=warning msg="using host network as the default" sandbox.go:136: time="2024-06-24T20:45:56Z" level=info msg="found worker \"kfgxhqakijaw7dlnx5rzz7db8\", labels=map[org.mobyproject.buildkit.worker.executor:oci org.mobyproject.buildkit.worker.hostname:ab9abcbf0d57 org.mobyproject.buildkit.worker.network:host org.mobyproject.buildkit.worker.oci.process-mode:sandbox org.mobyproject.buildkit.worker.sandbox:true org.mobyproject.buildkit.worker.selinux.enabled:false org.mobyproject.buildkit.worker.snapshotter:overlayfs], platforms=[linux/amd64 linux/amd64/v2 linux/amd64/v3 linux/arm64 linux/riscv64 linux/ppc64le linux/s390x linux/386 linux/mips64le linux/mips64 linux/arm/v7 linux/arm/v6]" sandbox.go:136: time="2024-06-24T20:45:56Z" level=info msg="found 1 workers, default=\"kfgxhqakijaw7dlnx5rzz7db8\"" sandbox.go:136: time="2024-06-24T20:45:56Z" level=warning msg="currently, only the default worker can be used." sandbox.go:136: time="2024-06-24T20:45:56Z" level=info msg="running server on /tmp/bktest_buildkitd450466471/buildkitd.sock" sandbox.go:133: stdout: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config3439816038/buildkitd.toml --root /tmp/bktest_buildkitd450466471 --addr unix:///tmp/bktest_buildkitd450466471/buildkitd.sock --debug --- FAIL: TestIntegration/BakeMetadataWarningsDedup

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.12.5, remote, ./tests, experimental)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=remote

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=remote === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=remote === CONT TestIntegration/BakeMetadataWarningsDedup/worker=remote bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=remote Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 114 101 109 111 116 101 45 117 107 98 114 54 102 115 111 102 122 112 120 54 117 115 48 109 117 117 117 112 55 49 57 117 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 114 101 109 111 116 101 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] sandbox.go:133: stdout: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config2928318267/buildkitd.toml --root /tmp/bktest_buildkitd2716036768 --addr unix:///tmp/bktest_buildkitd2716036768/buildkitd.sock --debug sandbox.go:133: stderr: /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config2928318267/buildkitd.toml --root /tmp/bktest_buildkitd2716036768 --addr unix:///tmp/bktest_buildkitd2716036768/buildkitd.sock --debug sandbox.go:136: > StartCmd 2024-06-24 20:45:58.813109733 +0000 UTC m=+15.637990391 /usr/bin/buildkitd --oci-worker=true --containerd-worker=false --oci-worker-gc=false --oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true --config=/tmp/bktest_config2928318267/buildkitd.toml --root /tmp/bktest_buildkitd2716036768 --addr unix:///tmp/bktest_buildkitd2716036768/buildkitd.sock --debug sandbox.go:136: time="2024-06-24T20:45:58Z" level=info msg="auto snapshotter: using overlayfs" sandbox.go:136: time="2024-06-24T20:45:58Z" level=warning msg="using host network as the default" sandbox.go:136: time="2024-06-24T20:45:58Z" level=info msg="found worker \"w1f85ar90y5kqfcb7863d7uf5\", labels=map[org.mobyproject.buildkit.worker.executor:oci org.mobyproject.buildkit.worker.hostname:eac3fc2390a0 org.mobyproject.buildkit.worker.network:host org.mobyproject.buildkit.worker.oci.process-mode:sandbox org.mobyproject.buildkit.worker.sandbox:true org.mobyproject.buildkit.worker.selinux.enabled:false org.mobyproject.buildkit.worker.snapshotter:overlayfs], platforms=[linux/amd64 linux/amd64/v2 linux/amd64/v3 linux/arm64 linux/riscv64 linux/ppc64le linux/s390x linux/386 linux/mips64le linux/mips64 linux/arm/v7 linux/arm/v6]" sandbox.go:136: time="2024-06-24T20:45:58Z" level=info msg="found 1 workers, default=\"w1f85ar90y5kqfcb7863d7uf5\"" sandbox.go:136: time="2024-06-24T20:45:58Z" level=warning msg="currently, only the default worker can be used." sandbox.go:136: time="2024-06-24T20:45:58Z" level=info msg="running server on /tmp/bktest_buildkitd2716036768/buildkitd.sock" --- FAIL: TestIntegration/BakeMetadataWarningsDedup/worker=remote (0.67s)

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (latest, docker-container, ./tests, experimental)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=docker-container

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === CONT TestIntegration/BakeMetadataWarningsDedup/worker=docker-container bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 99 111 110 116 97 105 110 101 114 45 113 55 104 51 54 121 108 117 120 120 122 100 98 119 112 116 50 112 115 116 49 111 103 121 53 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 100 111 99 107 101 114 45 99 111 110 116 97 105 110 101 114 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] --- FAIL: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container (0.85s)

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (master, docker-container, ./tests, experimental)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=docker-container

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === CONT TestIntegration/BakeMetadataWarningsDedup/worker=docker-container bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 99 111 110 116 97 105 110 101 114 45 120 121 48 98 118 110 52 108 112 106 105 98 97 57 53 115 106 114 116 121 54 104 54 117 101 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 100 111 99 107 101 114 45 99 111 110 116 97 105 110 101 114 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] --- FAIL: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container (0.71s)

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.12.5, docker-container, ./tests, experimental)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=docker-container

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === CONT TestIntegration/BakeMetadataWarningsDedup/worker=docker-container bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 99 111 110 116 97 105 110 101 114 45 98 105 116 119 101 114 102 113 98 105 51 100 54 111 112 112 50 110 104 121 48 52 48 118 118 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 100 111 99 107 101 114 45 99 111 110 116 97 105 110 101 114 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] --- FAIL: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container (1.14s)

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.14.0, docker-container, ./tests, experimental)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=docker-container

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === CONT TestIntegration/BakeMetadataWarningsDedup/worker=docker-container bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 99 111 110 116 97 105 110 101 114 45 100 112 55 104 115 121 117 50 113 107 122 102 108 99 55 99 57 112 53 48 116 118 118 50 100 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 100 111 99 107 101 114 45 99 111 110 116 97 105 110 101 114 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] --- FAIL: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container (0.73s)

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (buildx-stable-1, docker-container, ./tests)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=docker-container

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === CONT TestIntegration/BakeMetadataWarningsDedup/worker=docker-container bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 99 111 110 116 97 105 110 101 114 45 119 98 97 118 109 112 117 55 53 115 111 113 121 48 103 119 119 122 122 99 99 116 54 55 53 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 100 111 99 107 101 114 45 99 111 110 116 97 105 110 101 114 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] --- FAIL: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container (0.79s)

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.12.5, docker-container, ./tests)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=docker-container

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === CONT TestIntegration/BakeMetadataWarningsDedup/worker=docker-container bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 99 111 110 116 97 105 110 101 114 45 119 112 51 122 101 57 54 99 54 100 116 107 55 115 120 99 116 54 101 116 55 97 113 115 104 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 100 111 99 107 101 114 45 99 111 110 116 97 105 110 101 114 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] --- FAIL: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container (1.10s)

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (master, docker-container, ./tests)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=docker-container

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === CONT TestIntegration/BakeMetadataWarningsDedup/worker=docker-container bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 99 111 110 116 97 105 110 101 114 45 112 57 121 105 57 54 99 110 117 121 119 104 105 52 103 121 112 104 55 112 108 97 113 111 53 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 100 111 99 107 101 114 45 99 111 110 116 97 105 110 101 114 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] --- FAIL: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container (0.62s)

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (latest, docker-container, ./tests)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=docker-container

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === CONT TestIntegration/BakeMetadataWarningsDedup/worker=docker-container bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 99 111 110 116 97 105 110 101 114 45 119 112 105 114 55 108 50 106 50 100 50 48 99 116 99 50 116 101 99 100 117 101 116 49 107 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 100 111 99 107 101 114 45 99 111 110 116 97 105 110 101 114 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] --- FAIL: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container (0.68s)

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.14.0, docker-container, ./tests)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=docker-container

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === CONT TestIntegration/BakeMetadataWarningsDedup/worker=docker-container bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 99 111 110 116 97 105 110 101 114 45 106 119 103 118 108 120 52 48 100 105 97 99 115 115 119 109 109 55 53 108 50 103 99 98 97 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 100 111 99 107 101 114 45 99 111 110 116 97 105 110 101 114 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] --- FAIL: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container (0.70s)

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.13.1, docker-container, ./tests, experimental)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=docker-container

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === CONT TestIntegration/BakeMetadataWarningsDedup/worker=docker-container bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 99 111 110 116 97 105 110 101 114 45 112 102 54 53 117 100 54 117 110 113 109 108 116 55 109 116 100 98 109 100 108 103 97 105 57 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 100 111 99 107 101 114 45 99 111 110 116 97 105 110 101 114 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] --- FAIL: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container (1.14s)

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (v0.13.1, docker-container, ./tests)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=docker-container

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=docker-container === CONT TestIntegration/BakeMetadataWarningsDedup/worker=docker-container bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 99 111 110 116 97 105 110 101 114 45 57 99 100 101 99 109 54 107 112 114 121 52 118 103 105 118 49 103 57 115 50 53 115 103 99 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 100 111 99 107 101 114 45 99 111 110 116 97 105 110 101 114 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] --- FAIL: TestIntegration/BakeMetadataWarningsDedup/worker=docker-container (8.19s)

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (docker+containerd, ./tests)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=docker+containerd

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=docker+containerd === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=docker+containerd === CONT TestIntegration/BakeMetadataWarningsDedup/worker=docker+containerd bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=docker+containerd Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 97 119 119 118 49 118 122 105 50 121 57 122 106 112 107 101 114 53 99 99 111 114 52 112 98 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 100 111 99 107 101 114 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] sandbox.go:133: stdout: /usr/bin/dockerd sandbox.go:133: stderr: /usr/bin/dockerd sandbox.go:136: > startCmd 2024-06-24 20:46:26.141897759 +0000 UTC m=+54.667095167 /usr/bin/dockerd --data-root /tmp/integration3649814483/d9u0cy5oxjfct/root --exec-root /tmp/dxr/d9u0cy5oxjfct --pidfile /tmp/integration3649814483/d9u0cy5oxjfct/docker.pid --containerd-namespace d9u0cy5oxjfct --containerd-plugins-namespace d9u0cy5oxjfctp --host unix:///tmp/docker-integration/d9u0cy5oxjfct.sock --config-file /tmp/integration3649814483/daemon.json --userland-proxy=false --tls=false --debug sandbox.go:136: time="2024-06-24T20:46:26.161815775Z" level=info msg="Starting up" sandbox.go:136: time="2024-06-24T20:46:26.162851218Z" level=warning msg="could not change group /tmp/docker-integration/d9u0cy5oxjfct.sock to docker: group docker not found" sandbox.go:136: time="2024-06-24T20:46:26.162995127Z" level=debug msg="Listener created for HTTP on unix (/tmp/docker-integration/d9u0cy5oxjfct.sock)" sandbox.go:136: time="2024-06-24T20:46:26.163018921Z" level=info msg="containerd not running, starting managed containerd" sandbox.go:136: time="2024-06-24T20:46:26.163542458Z" level=info msg="started new containerd process" address=/tmp/dxr/d9u0cy5oxjfct/containerd/containerd.sock module=libcontainerd pid=11991 sandbox.go:136: time="2024-06-24T20:46:26.163804568Z" level=debug msg="created containerd monitoring client" address=/tmp/dxr/d9u0cy5oxjfct/containerd/containerd.sock module=libcontainerd sandbox.go:136: time="2024-06-24T20:46:26.164210092Z" level=debug msg="2024/06/24 20:46:26 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {Addr: \"/tmp/dxr/d9u0cy5oxjfct/containerd/containerd.sock\", ServerName: \"localhost\", Attributes: {\"<%!p(networktype.keyType=grpc.internal.transport.networktype)>\": \"unix\" }, }. Err: connection error: desc = \"transport: Error while dialing: dial unix /tmp/dxr/d9u0cy5oxjfct/containerd/containerd.sock: connect: no such file or directory\"" library=grpc sandbox.go:136: time="2024-06-24T20:46:26.177247756Z" level=info msg="starting containerd" revision=ae71819c4f5e67bb4d5ae76a6b735f29cc25774e version=v1.7.18 sandbox.go:136: time="2024-06-24T20:46:26.190176550Z" level=info msg="loading plugin \"io.containerd.event.v1.exchange\"..." type=io.containerd.event.v1 sandbox.go:136: time="2024-06-24T20:46:26.190206586Z" level=info msg="loading plugin \"io.containerd.internal.v1.opt\"..." type=io.containerd.internal.v1 sandbox.

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (docker+containerd, ./tests, experimental)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=docker+containerd

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=docker+containerd === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=docker+containerd === CONT TestIntegration/BakeMetadataWarningsDedup/worker=docker+containerd bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=docker+containerd Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 120 117 107 112 121 115 97 50 104 56 50 115 48 51 48 56 107 122 115 120 112 113 97 107 53 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 100 111 99 107 101 114 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] sandbox.go:133: stdout: /usr/bin/dockerd sandbox.go:133: stderr: /usr/bin/dockerd sandbox.go:136: > startCmd 2024-06-24 20:46:27.915870155 +0000 UTC m=+55.105277700 /usr/bin/dockerd --data-root /tmp/integration583998760/dnbk8o0s6orvt/root --exec-root /tmp/dxr/dnbk8o0s6orvt --pidfile /tmp/integration583998760/dnbk8o0s6orvt/docker.pid --containerd-namespace dnbk8o0s6orvt --containerd-plugins-namespace dnbk8o0s6orvtp --host unix:///tmp/docker-integration/dnbk8o0s6orvt.sock --config-file /tmp/integration583998760/daemon.json --userland-proxy=false --tls=false --debug sandbox.go:136: time="2024-06-24T20:46:27.934882268Z" level=info msg="Starting up" sandbox.go:136: time="2024-06-24T20:46:27.935786287Z" level=warning msg="could not change group /tmp/docker-integration/dnbk8o0s6orvt.sock to docker: group docker not found" sandbox.go:136: time="2024-06-24T20:46:27.935892535Z" level=debug msg="Listener created for HTTP on unix (/tmp/docker-integration/dnbk8o0s6orvt.sock)" sandbox.go:136: time="2024-06-24T20:46:27.935908325Z" level=info msg="containerd not running, starting managed containerd" sandbox.go:136: time="2024-06-24T20:46:27.936421525Z" level=info msg="started new containerd process" address=/tmp/dxr/dnbk8o0s6orvt/containerd/containerd.sock module=libcontainerd pid=11972 sandbox.go:136: time="2024-06-24T20:46:27.936832342Z" level=debug msg="created containerd monitoring client" address=/tmp/dxr/dnbk8o0s6orvt/containerd/containerd.sock module=libcontainerd sandbox.go:136: time="2024-06-24T20:46:27.937179359Z" level=debug msg="2024/06/24 20:46:27 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {Addr: \"/tmp/dxr/dnbk8o0s6orvt/containerd/containerd.sock\", ServerName: \"localhost\", Attributes: {\"<%!p(networktype.keyType=grpc.internal.transport.networktype)>\": \"unix\" }, }. Err: connection error: desc = \"transport: Error while dialing: dial unix /tmp/dxr/dnbk8o0s6orvt/containerd/containerd.sock: connect: no such file or directory\"" library=grpc sandbox.go:136: time="2024-06-24T20:46:27.949786740Z" level=info msg="starting containerd" revision=ae71819c4f5e67bb4d5ae76a6b735f29cc25774e version=v1.7.18 sandbox.go:136: time="2024-06-24T20:46:27.963001355Z" level=info msg="loading plugin \"io.containerd.event.v1.exchange\"..." type=io.containerd.event.v1 sandbox.go:136: time="2024-06-24T20:46:27.963029157Z" level=info msg="loading plugin \"io.containerd.internal.v1.opt\"..." type=io.containerd.internal.v1 sandbox.go:1

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (docker, ./tests)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=docker

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=docker === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=docker === CONT TestIntegration/BakeMetadataWarningsDedup/worker=docker bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=docker Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 51 98 99 101 98 100 100 119 102 102 101 53 54 119 97 117 112 109 120 114 122 118 99 105 48 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 100 111 99 107 101 114 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] sandbox.go:133: stdout: /usr/bin/dockerd sandbox.go:133: stderr: /usr/bin/dockerd sandbox.go:136: > startCmd 2024-06-24 20:47:56.714383138 +0000 UTC m=+133.447352476 /usr/bin/dockerd --data-root /tmp/integration1915715398/dqjr5d1qyf8hp/root --exec-root /tmp/dxr/dqjr5d1qyf8hp --pidfile /tmp/integration1915715398/dqjr5d1qyf8hp/docker.pid --containerd-namespace dqjr5d1qyf8hp --containerd-plugins-namespace dqjr5d1qyf8hpp --host unix:///tmp/docker-integration/dqjr5d1qyf8hp.sock --config-file /tmp/integration1915715398/daemon.json --userland-proxy=false --tls=false --debug sandbox.go:136: time="2024-06-24T20:47:56.732962204Z" level=info msg="Starting up" sandbox.go:136: time="2024-06-24T20:47:56.734080626Z" level=warning msg="could not change group /tmp/docker-integration/dqjr5d1qyf8hp.sock to docker: group docker not found" sandbox.go:136: time="2024-06-24T20:47:56.734195460Z" level=debug msg="Listener created for HTTP on unix (/tmp/docker-integration/dqjr5d1qyf8hp.sock)" sandbox.go:136: time="2024-06-24T20:47:56.734218473Z" level=info msg="containerd not running, starting managed containerd" sandbox.go:136: time="2024-06-24T20:47:56.734704881Z" level=info msg="started new containerd process" address=/tmp/dxr/dqjr5d1qyf8hp/containerd/containerd.sock module=libcontainerd pid=18873 sandbox.go:136: time="2024-06-24T20:47:56.735005933Z" level=debug msg="created containerd monitoring client" address=/tmp/dxr/dqjr5d1qyf8hp/containerd/containerd.sock module=libcontainerd sandbox.go:136: time="2024-06-24T20:47:56.735158249Z" level=debug msg="2024/06/24 20:47:56 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {Addr: \"/tmp/dxr/dqjr5d1qyf8hp/containerd/containerd.sock\", ServerName: \"localhost\", Attributes: {\"<%!p(networktype.keyType=grpc.internal.transport.networktype)>\": \"unix\" }, }. Err: connection error: desc = \"transport: Error while dialing: dial unix /tmp/dxr/dqjr5d1qyf8hp/containerd/containerd.sock: connect: no such file or directory\"" library=grpc sandbox.go:136: time="2024-06-24T20:47:56.748039014Z" level=info msg="starting containerd" revision=ae71819c4f5e67bb4d5ae76a6b735f29cc25774e version=v1.7.18 sandbox.go:136: time="2024-06-24T20:47:56.760907056Z" level=info msg="loading plugin \"io.containerd.event.v1.exchange\"..." type=io.containerd.event.v1 sandbox.go:136: time="2024-06-24T20:47:56.760942292Z" level=info msg="loading plugin \"io.containerd.internal.v1.opt\"..." type=io.containerd.internal.v1 sandbox.go:136: time="2024-06-24T20:47:56.760980904

Check failure on line 828 in tests/bake.go

View workflow job for this annotation

GitHub Actions / test-integration (docker, ./tests, experimental)

Failed: tests/TestIntegration/BakeMetadataWarningsDedup/worker=docker

=== RUN TestIntegration/BakeMetadataWarningsDedup/worker=docker === PAUSE TestIntegration/BakeMetadataWarningsDedup/worker=docker === CONT TestIntegration/BakeMetadataWarningsDedup/worker=docker bake.go:828: Error Trace: /src/tests/bake.go:828 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:95 /src/vendor/github.com/moby/buildkit/util/testutil/integration/run.go:212 Error: Received unexpected error: exit status 1 Test: TestIntegration/BakeMetadataWarningsDedup/worker=docker Messages: [35 48 32 98 117 105 108 100 105 110 103 32 119 105 116 104 32 34 105 110 116 101 103 114 97 116 105 111 110 45 54 103 99 105 122 103 114 104 102 50 113 102 117 112 104 103 115 112 119 48 57 52 119 52 121 34 32 105 110 115 116 97 110 99 101 32 117 115 105 110 103 32 100 111 99 107 101 114 32 100 114 105 118 101 114 10 10 35 49 32 91 105 110 116 101 114 110 97 108 93 32 108 111 97 100 32 108 111 99 97 108 32 98 97 107 101 32 100 101 102 105 110 105 116 105 111 110 115 10 35 49 32 114 101 97 100 105 110 103 32 100 111 99 107 101 114 45 98 97 107 101 46 104 99 108 32 49 48 50 66 32 47 32 49 48 50 66 32 100 111 110 101 10 35 49 32 68 79 78 69 32 48 46 48 115 10 69 82 82 79 82 58 32 99 111 117 108 100 32 110 111 116 32 102 105 110 100 32 97 110 121 32 116 97 114 103 101 116 32 109 97 116 99 104 105 110 103 32 39 100 101 102 97 117 108 116 39 10] sandbox.go:133: stdout: /usr/bin/dockerd sandbox.go:133: stderr: /usr/bin/dockerd sandbox.go:136: > startCmd 2024-06-24 20:46:45.351752624 +0000 UTC m=+56.276424582 /usr/bin/dockerd --data-root /tmp/integration3961550380/dfnuxj2kkriao/root --exec-root /tmp/dxr/dfnuxj2kkriao --pidfile /tmp/integration3961550380/dfnuxj2kkriao/docker.pid --containerd-namespace dfnuxj2kkriao --containerd-plugins-namespace dfnuxj2kkriaop --host unix:///tmp/docker-integration/dfnuxj2kkriao.sock --config-file /tmp/integration3961550380/daemon.json --userland-proxy=false --tls=false --debug sandbox.go:136: time="2024-06-24T20:46:45.373379399Z" level=info msg="Starting up" sandbox.go:136: time="2024-06-24T20:46:45.374433643Z" level=warning msg="could not change group /tmp/docker-integration/dfnuxj2kkriao.sock to docker: group docker not found" sandbox.go:136: time="2024-06-24T20:46:45.374590256Z" level=debug msg="Listener created for HTTP on unix (/tmp/docker-integration/dfnuxj2kkriao.sock)" sandbox.go:136: time="2024-06-24T20:46:45.374607278Z" level=info msg="containerd not running, starting managed containerd" sandbox.go:136: time="2024-06-24T20:46:45.375184329Z" level=info msg="started new containerd process" address=/tmp/dxr/dfnuxj2kkriao/containerd/containerd.sock module=libcontainerd pid=12253 sandbox.go:136: time="2024-06-24T20:46:45.375590219Z" level=debug msg="created containerd monitoring client" address=/tmp/dxr/dfnuxj2kkriao/containerd/containerd.sock module=libcontainerd sandbox.go:136: time="2024-06-24T20:46:45.375866081Z" level=debug msg="2024/06/24 20:46:45 WARNING: [core] [Channel #1 SubChannel #2] grpc: addrConn.createTransport failed to connect to {Addr: \"/tmp/dxr/dfnuxj2kkriao/containerd/containerd.sock\", ServerName: \"localhost\", Attributes: {\"<%!p(networktype.keyType=grpc.internal.transport.networktype)>\": \"unix\" }, }. Err: connection error: desc = \"transport: Error while dialing: dial unix /tmp/dxr/dfnuxj2kkriao/containerd/containerd.sock: connect: no such file or directory\"" library=grpc sandbox.go:136: time="2024-06-24T20:46:45.387392814Z" level=info msg="starting containerd" revision=ae71819c4f5e67bb4d5ae76a6b735f29cc25774e version=v1.7.18 sandbox.go:136: time="2024-06-24T20:46:45.400719709Z" level=info msg="loading plugin \"io.containerd.event.v1.exchange\"..." type=io.containerd.event.v1 sandbox.go:136: time="2024-06-24T20:46:45.400749756Z" level=info msg="loading plugin \"io.containerd.internal.v1.opt\"..." type=io.containerd.internal.v1 sandbox.go:136: time="2024-06-24T20:46:45.40078326

dt, err := os.ReadFile(filepath.Join(dirDest, "md.json"))
require.NoError(t, err)

type mdT struct {
BuildWarnings []client.VertexWarning `json:"buildx.build.warnings"`
Default struct {
BuildRef string `json:"buildx.build.ref"`
} `json:"default"`
}
var md mdT
err = json.Unmarshal(dt, &md)
require.NoError(t, err)

require.NotEmpty(t, md.Default.BuildRef)
require.NotEmpty(t, md.BuildWarnings)

skipNoCompatBuildKit(t, sb, ">= 0.14.0-0", "lint")
require.Len(t, md.BuildWarnings, 3)
}

func testBakeMultiExporters(t *testing.T, sb integration.Sandbox) {
if !isDockerContainerWorker(sb) {
t.Skip("only testing with docker-container worker")
Expand Down
Loading

0 comments on commit 77d093d

Please sign in to comment.