Browse code

hack: temporarily use custom buildkit ref for testing

Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>

CrazyMax authored on 2025/09/01 19:07:58
Showing 2 changed files
... ...
@@ -55,7 +55,7 @@ require (
55 55
 	github.com/miekg/dns v1.1.66
56 56
 	github.com/mistifyio/go-zfs/v3 v3.0.1
57 57
 	github.com/mitchellh/copystructure v1.2.0
58
-	github.com/moby/buildkit v0.24.0-rc2
58
+	github.com/moby/buildkit v0.24.0-rc2 // FIXME(crazy-max): remove override from hack/buildkit-ref when updating.
59 59
 	github.com/moby/docker-image-spec v1.3.1
60 60
 	github.com/moby/go-archive v0.1.0
61 61
 	github.com/moby/ipvs v1.1.0
... ...
@@ -19,6 +19,9 @@ if [[ "${buildkit_ref}" == *-*-* ]]; then
19 19
 	buildkit_ref=$(curl -s "https://api.github.com/repos/${buildkit_repo}/commits/${buildkit_ref}" | jq -r .sha)
20 20
 fi
21 21
 
22
+# FIXME(crazy-max) temporarily overriding version to use for tests; remove with the next release of buildkit; see https://github.com/moby/buildkit/pull/6179
23
+buildkit_ref=a59c3fe07d1b25fd6563d3955d66c6d15264c49f
24
+
22 25
 cat << EOF
23 26
 BUILDKIT_REPO=$buildkit_repo
24 27
 BUILDKIT_REF=$buildkit_ref