-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Buildah Vendor Treadmill
[ 2022-04-20 this is still under development ]
This document describes the Buildah Vendor Treadmill, a two-part system used for easing the burden of vendoring buildah into podman. The two parts are:
-
sync - run daily-ish by a human (as of this writing, Ed). In theory this is very simple:
- Preserve current set of treadmill patches (i.e. results of last sync + fixes)
-
git pullto bring in latest podman @ main -
git rebasethe treadmill PR onto podman @ main -
make vendorto pull in current buildah @ main - run a few tests; fix any problems
- (It's a little trickier than that, and for the most part Ed worries about it so you don't have to)
- pick - run ad hoc by a developer needing to vendor in a new buildah into podman. This is the part that you, dear reader, probably want to know about.
We will cover those in reverse order, because chances are you're here for vendoring buildah.
Target Audience: developer vendoring buildah into podman
(@edsantiago can you add what's needed to run this. Apparently Perl and the json.PM, maybe more.)
Most of the time the vendoring will go smoothly. If you're reading this it's because things haven't gone smoothly. Most likely the bud tests are failing: either the patching step, or the bud tests themselves. You should now run, from your buildah-vendor branch:
$ hack/buildah-vendor-treadmill --pickThis will identify the treadmill PR (currently #13808 as of 2022-05-02) and cherry-pick its patches onto your branch. If Ed hasn't been slacking, this will resolve your vendoring problems and you can git commit --amend (to update the commit message) then git push --force and make it past CI.
As of this writing (2022-05-02) this process only works when vendoring into main. If you need to vendor a new buildah into a maintenance branch, I'm sorry, you're on your own. (But chances are good that someone has already vendored that buildah into main, and you can cherry-pick the required changes).
As we gain experience with this process, please update this document to reflect best practices.
Target audience: someone willing to run the sync step daily, and fix problems. This is what Ed does daily. Steps involved:
- keep a
vendor_buildah_latestbranch active - run the
syncstep - fix problems if they arise
As of the past three weeks in which I've been playing with this, it has been super easy: the process works cleanly:
$ hack/buildah-vendor-treadmill --update
-> buildah old = v1.25.2-0.20220412203738-d41a4fd27c19
|
+---> HEAD is buildah vendor (as expected); dropping it...
|
+---> Pulling podman main...
remote: Enumerating objects: 15, done.
[...]
* branch main -> FETCH_HEAD
d6f47e692..712c3bb22 main -> upstream/main
|
+---> Rebasing on podman main...
Successfully rebased and updated refs/heads/vendor_buildah_latest.
|
+---> Vendoring in buildah...
[...]
all modules verified
-> buildah new = v1.25.2-0.20220418231153-74cd96acf358
|
+---> Running 'make' to confirm that podman builds cleanly...
[...]
|
+---> Cross-checking man pages...
|
+---> Confirming that buildah-bud-tests patches still apply...
+ git clone -q https://github.com/containers/buildah test-buildah-v1.25.2-0.20220418231153-74cd96acf358
+ git checkout -q 74cd96acf358
+ git tag buildah-bud-in-podman
+ make bin/buildah
[...]
+ git am --reject
Applying: tweaks for running buildah tests under podman
Checking patch tests/helpers.bash...
Applied patch tests/helpers.bash cleanly.
+ /home/esm/src/atomic/2018-02.podman/libpod/test/buildah-bud/apply-podman-deltas
|
+---> All OK. It's now up to you to 'git push --force'
|
+---> --- Reminder: New buildah, new podman. Good candidate for pushing.On several occasions it hasn't worked cleanly, and those are the ugly ones, and that's why Ed gets paid the Big Red Hat Bucks. In those cases I've basically just followed the procedures for when this happens on a real vendor PR, then git commit --amend my changes on the treadmill PR, then force-push. The cases I've seen so far:
-
man page checker - new option gets added to
buildah bud. Solution: look at the buildah PR, find the new docs, copy/paste them intopodman-buildman page. However, when this happens, you also need to check for: -
new options - is parsed by podman, but you probably need to muck with
buildahDefine.BuildOptionsin build.go. Possibly also do something sopodman-remotewill work.- if the new option makes no sense in podman-remote, you will want to add a
skip_if_remoteto apply-podman-deltas
- if the new option makes no sense in podman-remote, you will want to add a
-
other test failures - maybe the new
buildah budtests don't pass underpodman buildand you just don't want to deal with fixing them now. You can addskips toapply-podman-deltas -
conflicts - when applying the buildah-bud-under-podman patches. Usually happens when someone edits buildah's
helpers.bash. Solution: see the buildah bud tests README
There's also a slight corner case: after a new buildah is vendored into podman, the sync step will probably fail (because of conflicts, because the changes needed to bring in the vendor are probably slightly different than the ones Ed has been tweaking in the treadmill script). When this happens, the best solution is to start from scratch:
- Check out your vendor_buildah branch
- Drop all commits (i.e. make sure your vendor_buildah branch is a no-commit one. No buildah-vendor commit, no treadmill commit)
- Move the
0000-buildah-vendor-treadmill.patchfile to a safe location, just in case - Run
hack/buildah-vendor-treadmill --reset. This will create two dummy empty commits fitting the magic formula. Once those commits exist,--syncwill start working again.