mbox series

[v4,0/4] Docker cross-compile targets and user build support

Message ID 20170216123456.28621-1-alex.bennee@linaro.org
Headers show
Series Docker cross-compile targets and user build support | expand

Message

Alex Bennée Feb. 16, 2017, 12:34 p.m. UTC
Hi Fam,

Here is the latest iteration of the docker changes incorporating your
suggestions:

  - -u behaves safely if user already added
  - cross containers specify QEMU_CONFIGURE_OPTS
  - merged docker and build automation in MAINTAINERS

Regards,

Alex Bennée (4):
  tests/docker: add basic user mapping support
  new: debian docker targets for cross-compiling
  .shippable.yml: new CI provider
  MAINTAINERS: merge Build and test automation with Docker tests

 .shippable.yml                                     | 21 ++++++++++++++++++
 MAINTAINERS                                        | 13 ++++++-----
 tests/docker/Makefile.include                      |  6 ++++++
 tests/docker/common.rc                             |  2 +-
 tests/docker/docker.py                             | 16 ++++++++++++--
 tests/docker/dockerfiles/debian-arm64-cross.docker | 15 +++++++++++++
 tests/docker/dockerfiles/debian-armhf-cross.docker | 15 +++++++++++++
 tests/docker/dockerfiles/debian.docker             | 25 ++++++++++++++++++++++
 8 files changed, 103 insertions(+), 10 deletions(-)
 create mode 100644 .shippable.yml
 create mode 100644 tests/docker/dockerfiles/debian-arm64-cross.docker
 create mode 100644 tests/docker/dockerfiles/debian-armhf-cross.docker
 create mode 100644 tests/docker/dockerfiles/debian.docker

-- 
2.11.0

Comments

Fam Zheng Feb. 16, 2017, 1:36 p.m. UTC | #1
On Thu, 02/16 12:34, Alex Bennée wrote:
> Hi Fam,

> 

> Here is the latest iteration of the docker changes incorporating your

> suggestions:

> 

>   - -u behaves safely if user already added

>   - cross containers specify QEMU_CONFIGURE_OPTS

>   - merged docker and build automation in MAINTAINERS


Thanks for iterating.  I suggested a few minor changes, after which I think it's
time to merge!

Fam