~rcj/livecd-rootfs/+git/livecd-rootfs:ubuntu/bionic_parallel_cpc

Last commit made on 2019-05-21
Get this branch:
git clone -b ubuntu/bionic_parallel_cpc https://git.launchpad.net/~rcj/livecd-rootfs/+git/livecd-rootfs
Only Robert C Jennings can upload to this branch. If you are Robert C Jennings please log in for upload directions.

Branch merges

Branch information

Name:
ubuntu/bionic_parallel_cpc
Repository:
lp:~rcj/livecd-rootfs/+git/livecd-rootfs

Recent commits

0c39f1b... by Robert C Jennings

ubuntu-cpc: Update changelog with change bug number

0cf23f7... by Robert C Jennings

magic-proxy: Send headers on error

aa06de9... by Robert C Jennings

ubuntu-cpc: Ensure base disk image is the same between all build targets

The following targets have livecd.ubuntu-cpc.manifest (and
livecd.ubuntu-cpc.ext4) which differ in some way from the 'all'
target. They are all missing grub-efi and other modifications:

root-dir
squashfs
tarball

These targets do not depend on the 'disk-image' target. This means that
the ext4 produced will lack the uefi modifications (and any from the
disk-image target binary hooks).

Since the ext4 file is common to all builds there is a chance that a
parallel build from one of these targets could overwrite this artifact.
This patch ensures that all targets will produce consistent base output.

7da22dd... by Robert C Jennings

ubuntu-cpc: Allow comments in series files

An upcoming addition of the disk-image target to several series files will
required some explanation. Without comment support in series files that
is not possible. This patch adds support for comments in series files.

afc482a... by Robert C Jennings

ubuntu-cpc: parallel builds: update changelog

2742b06... by Robert C Jennings

ubuntu-cpc: parallel builds: apt repo snapshot

* Inject a proxy into the build providing a snapshot view of the package repo.

    When the REPO_SNAPSHOT_STAMP variable is set, the auto/build script will attempt
    to launch a transparent HTTP proxy on port 8080, and insert an iptables rule to
    redirect all outgoing HTTP requests to this proxy.

    The proxy, contained in the `magic-proxy` Python script, examines each request
    and silently overrides those pointing to InRelease files or files that are
    listed in InRelease files. It will instead provide the contents of the requested
    file as it was at REPO_SNAPSHOT_STAMP, by downloading the corresponding asset
    "by hash".

7907544... by Robert C Jennings

ubuntu-cpc: parallel builds: build hooks during config

* Use series files with dependency handling to generate hook symlinks dynamically

    This patch currently only applies to the "ubuntu-cpc" project.

    More and more logic has been going into the hook scripts to decide
    under which conditions they should run or not. As we are moving
    to parallelized builds of image sets, this will get even more
    complicated. Base hooks will have to know which image sets they
    belong to and modification of the dependency chain between scripts
    will become more complicated and prone to errors, as the number of
    image sets grows.

    This patch, and prior, introduce explicit ordering and dependency
    handling for scripts through the use of `series` files and an
    explicit syntax for dependency specification.

3029676... by Robert C Jennings

ubuntu-cpc: parallel builds: Remove old targets

Also fix references to the old file names in the hooks

d154f08... by Robert C Jennings

ubuntu-cpc: parallel builds: Add hook generation tooling

f2e2efc... by Robert C Jennings

ubuntu-cpc: parallel builds: Re-organize hooks