(t *testing.T, sb integration.Sandbox, constraint string, msg string)
| 247 | } |
| 248 | |
| 249 | func skipNoCompatBuildKit(t *testing.T, sb integration.Sandbox, constraint string, msg string) { |
| 250 | if !matchesBuildKitVersion(t, sb, constraint) { |
| 251 | t.Skipf("buildkit version %s does not match %s constraint (%s)", buildkitVersion(t, sb), constraint, msg) |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | func defaultManifestMediaType(t *testing.T, sb integration.Sandbox) string { |
| 256 | if matchesBuildKitVersion(t, sb, ">= 0.31.0-0") { |
searching dependent graphs…