automated tests of debian compatibility: run-from-source and run-from-.deb-package #630
Labels
No Label
0.2.0
0.3.0
0.4.0
0.5.0
0.5.1
0.6.0
0.6.1
0.7.0
0.8.0
0.9.0
1.0.0
1.1.0
1.10.0
1.10.1
1.10.2
1.10a2
1.11.0
1.12.0
1.12.1
1.13.0
1.14.0
1.15.0
1.15.1
1.2.0
1.3.0
1.4.1
1.5.0
1.6.0
1.6.1
1.7.0
1.7.1
1.7β
1.8.0
1.8.1
1.8.2
1.8.3
1.8β
1.9.0
1.9.0-s3branch
1.9.0a1
1.9.0a2
1.9.0b1
1.9.1
1.9.2
1.9.2a1
LeastAuthority.com automation
blocker
cannot reproduce
cloud-branch
code
code-dirnodes
code-encoding
code-frontend
code-frontend-cli
code-frontend-ftp-sftp
code-frontend-magic-folder
code-frontend-web
code-mutable
code-network
code-nodeadmin
code-peerselection
code-storage
contrib
critical
defect
dev-infrastructure
documentation
duplicate
enhancement
fixed
invalid
major
minor
n/a
normal
operational
packaging
somebody else's problem
supercritical
task
trivial
unknown
was already fixed
website
wontfix
worksforme
No Milestone
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#630
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
We should have a wiki page (perhaps InstallDetails) with a table. One one
axis we'll have a list of debian/ubuntu releases: gutsy, intrepid, etch, sid.
The other axis will have two values: "run-from-source" and "run-from-.deb".
In each cell we'll either say "not compatible" (maybe with some hints for
someone who wants to do the work to fix that), or "yes compatible" and a link
to the buildbot that proves it.
The "run-from-source" form of compatibility means that you can download a
tahoe tarball (or grab a darcs checkout) and run "python setup.py build" and
then run "./bin/tahoe --version" successfully. This kind of build is allowed
to download a variety of dependent libraries (or use ones from the tahoe-deps
tarball). It has some minimal set of dependencies that cannot be installed
via easy_install, like python itself, and either some glue libraries
(python-openssl) or the binary and header packages for the C libraries that
they link against (like openssl-dev).
The "run-from-package" form of compatibility means that you can download a
.deb package from the APT repository on allmydata.org and then run
"/usr/bin/tahoe --version" successfully. It also means that you can create
.deb packages from a source tree with the "make deb-$ARCH-head" target
(perhaps after installing a few extra packages, like build-essential and
debhelper). This form is more strict, because it requires that tahoe work
with the library versions that are present in the host environment, rather
than replacing them with newer versions via easy_install. For example, Ubuntu
"gutsy" includes simplejson-1.7.1, but the current version is 2.0.8 . If
Tahoe required 2.0.x, then it would work in the "run-from-source" mode on
gutsy, but not in the "run-from-package" mode.
To confirm run-from-package compatibility, we'd like to have a buildslave
which tests installation and execution of a tahoe debian package, like so:
with a basic debian system installed. (this should probably cache the
necessary packages, to run faster and reduce network traffic, since it
will need the entire basic system on each build)
web server, put the .deb in there, tell the chroot to 'apt-get install
allmydata-tahoe'
Thank you for writing this up! This is a good plan.
Now, as a matter of policy, which Debian/Ubuntu versions should we target to meet the second kind of "supported" -- the apt-get-centric kind? I suggest Ubuntu Hardy, Ubuntu Intrepid, and Debian Lenny. Zandr the allmydata.com Ops Guy says that he is happy requiring Ubuntu Hardy on things instead of having tahoe maintain apt-get-style compatibility with Ubuntu Gutsy, and also the Tahoe-1.3.0 release doesn't have the apt-get-centric kind of compatibility with Gutsy, since the Nevow installation on Gutsy doesn't have a .egg-info file, and Tahoe-1.3.0 generates a bin/tahoe executable using setuptools. (This may not have been entirely intended -- I didn't mean to make the bin/tahoe executable which worked on Gutsy in Tahoe-1.2.0 stop working in Tahoe-1.3.0. Once we have the automated testing described in this ticket then such unexpected changes will be less common.)
Yeah, hardy/intrepid/lenny works for me. I use sid myself, but if it's compatible with lenny it should be compatible with sid. (we could test this explicitly, but it would be slightly more expensive network-wise, since sid is by definition a moving target). As long as Zandr is ok with giving up on gutsy, I'm ok with it.
I've updated InstallDetails and DownloadDebianPackages with the beginnings of the compatibility table.
For Allmydata Ops, it's just Hardy that matters.
Having said that, I'd like various Intrepid machines to work as well, and I guess now that stable=Lenny, I suppose we should support that too.
some notes:
sudo debootstrap gutsy ./gutsy-chroot <http://us.archive.ubuntu.com/ubuntu>
creates a 218MB gutsy chroot environment in ./gutsy-chroot, takes about 4 minutes from our colo. There are some more options to include extra packages in the base install. I think the next step is to start an sshd inside the chroot, then use schroot to run additional commands in there (starting with adding more directories to /etc/apt/sources.list, then running apt-get update and install).ooh, it looks like 'schroot' is what I want: it can be configured to create a chroot environment from a tarball (i.e. a pre-generated gutsy base system) and then run some number of commands inside it. It also looks like, once configured, it can be invoked by (controlled) non-root users, which would be ideal for the buildslave.
Ok, here's my plan:
functional single-package APT repository
the allmydata.org repo (for dependency packages) and the local EXPORT
repo
of that baseline volume. Each time the session is started, schroot will
create an LVM snapshot initially populated with the baseline contents.
When the session is finished, the snapshot will be destroyed.
directory gets dragged into the .deb)
prodnet, wait for connections, download a file, check its contents
Having one of these on each debian platform we care about should get us
tested installable packages.
Oh, and http://www.pseudorandom.co.uk/2007/sbuild/ is a useful resource.
It looks like the task of "explain debian compatibility" has been nicely completed by Brian. Shall we close this ticket, or change its name to "automated tests of debian compatibility"? :-)
yes! updating title..
explain debian compatibility: run-from-source vs run-from-.deb-packageto automated tests of debian compatibility: run-from-source and run-from-.deb-packageIs this now a duplicate of #593 (test installation of .deb's)?
yes.. I've closed #593 as a dup, since this ticket now has more useful information.
We no longer maintain the debian packages -- that's performed by Debian itself.