On Fri, Aug 16, 2019 at 11:49:44AM +0200, Andrea Bolognani wrote:
See the individual commits for details, but the gist of it is that
after this series it's possible for users to hook into the build
process and customize it according to their needs; on top of that,
the whole thing is made more maintainable in the process.
Andrea Bolognani (10):
ci: Fix /etc/sub{u,g}id parsing
ci: Drop $(CI_SUBMODULES)
ci: Move everything to a separate directory
ci: Create user's home directory in the container
ci: Move source directory under $(CI_USER_HOME)
ci: Introduce $(CI_BUILD_SCRIPT)
ci: Generalize running commands inside the container
ci: Introduce $(CI_PREPARE_SCRIPT)
ci: Run $(CI_PREPARE_SCRIPT) as root
ci: Stop using --workdir
.gitignore | 2 +-
.travis.yml | 8 +--
Makefile.am | 6 +-
Makefile.ci => ci/Makefile | 109 +++++++++++++++++++------------------
ci/build.sh | 40 ++++++++++++++
ci/prepare.sh | 13 +++++
6 files changed, 118 insertions(+), 60 deletions(-)
rename Makefile.ci => ci/Makefile (79%)
create mode 100644 ci/build.sh
create mode 100644 ci/prepare.sh
Reviewed-by: Ján Tomko <jtomko(a)redhat.com>
Jano