Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
31fd25f
Fix getGitSSHCommand test to match earthly's extended signature
gilescope Apr 9, 2026
6fd9aa6
Update OCI hooks to use containerd v2 imports
gilescope Apr 9, 2026
9046e48
Replace CloneVT with value copy for vendored fsutil compatibility
gilescope Apr 9, 2026
13d4d82
Add fsutil types proto include path for protoc generation
gilescope Apr 9, 2026
dcdf577
Fix NewWorkerOpt argument order for earthly hooks and CDI manager
gilescope Apr 9, 2026
98fda15
Fix OCI hooks: Env field bug and deprecation lint warning
gilescope Apr 9, 2026
d018ede
Fix golangci-lint issues in earthly-specific code
gilescope Apr 9, 2026
d8293f6
Fix gopls analyzer and gocritic lint issues in earthly-specific code
gilescope Apr 9, 2026
eb6df62
Fix gofmt import ordering in earthly exporter
gilescope Apr 9, 2026
b092f90
Fix gopls unused parameter warnings in earthly-specific code
gilescope Apr 9, 2026
d62820a
Fix git CLI error wrapping breaking upstream error detection
gilescope Apr 9, 2026
cd2e503
Remove stale vendored dependencies after containerd v2 migration
gilescope Apr 10, 2026
6e5e1e0
Fix validate-generated-files: regenerate protos with modern protoc
gilescope Apr 10, 2026
5638371
fix: point to latest fsutil
gilescope Apr 10, 2026
5a8d2be
Fix copylocks lint and re-vendor for updated fsutil
gilescope Apr 10, 2026
f4ec24b
fix: disable forced security upgrade (to allow bootstrapping to it)
gilescope Apr 11, 2026
da92d34
fix: downgrade multi-ref platform check to warning for earthly compat
gilescope Apr 11, 2026
447cef5
fix: disable gateway mount caching for earthly CACHE compatibility
gilescope Apr 11, 2026
51fe8fb
build: bake version.Package as github.com/EarthBuild/buildkit (#18)
kmannislands Jun 17, 2026
c8c1b40
fix: drop redundant LockOSThread workaround in runc executor
gilescope Jun 20, 2026
3f79445
fix: restore COPY ModeStr and AlwaysReplaceExistingDestPaths
gilescope Jun 23, 2026
7346f9f
chore: revert no-op divergences from upstream to shrink delta
gilescope Jun 23, 2026
80e66c7
revert: drop earthly Rosetta /proc archutil patch
gilescope Jun 24, 2026
e708358
revert: remove scheduler inconsistent-graph-state diagnostics
gilescope Jun 28, 2026
c41dbaf
fix: guard nil frontendAttrs map in Client.solve
gilescope Jun 28, 2026
8ee6771
Revert "revert: drop earthly Rosetta /proc archutil patch"
gilescope Jun 29, 2026
f623d45
Revert "revert: remove scheduler inconsistent-graph-state diagnostics"
gilescope Jun 29, 2026
b0a5159
refactor: drop EarthBuild/fsutil fork, use stock tonistiigi/fsutil
gilescope Jun 29, 2026
9552374
Merge main into merge-in-buildkit-all-at-once
gilescope Jun 30, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ RUN --mount=target=. <<'EOT'
exit 1
fi
set -ex
export PKG=github.com/moby/buildkit EARTHLY_PKG=github.com/earthly/buildkit VERSION=$(git describe --match 'v[0-9]*' --dirty='.m' --always --tags) REVISION=$(git rev-parse HEAD)$(if ! git diff --no-ext-diff --quiet --exit-code; then echo .m; fi) COMMIT_DATE=$(git show -s --format=%cI HEAD);
export PKG=github.com/moby/buildkit EARTHLY_PKG=github.com/EarthBuild/buildkit VERSION=$(git describe --match 'v[0-9]*' --dirty='.m' --always --tags) REVISION=$(git rev-parse HEAD)$(if ! git diff --no-ext-diff --quiet --exit-code; then echo .m; fi) COMMIT_DATE=$(git show -s --format=%cI HEAD);
echo "-X ${PKG}/version.Version=${RELEASE_VERSION} -X ${PKG}/version.Revision=${REVISION} -X ${PKG}/version.Package=${EARTHLY_PKG}" > /tmp/.ldflags;
echo -n "${RELEASE_VERSION}" > /tmp/.version;
echo -n "${COMMIT_DATE}" > /tmp/.commit_date;
Expand Down
Loading
Loading