diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2020-07-01 14:56:44 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2020-07-11 15:53:00 +0100 |
commit | 27ebeda0c07dcc2e9eec98ed1f70115ffa1e3797 (patch) | |
tree | 88a4f32bd9b6f72ea21e5b47e66d38d74bf1dcbe /.gitlab-ci.d/containers.yml | |
parent | 634ef789f8eea104ec49ead116eb52a8fcaa48a0 (diff) |
tests/docker: add a linux-user testing focused image
We happily use all the cross images for both cross-building QEMU as
well as building the linux-user tests. However calling docker from
within docker seems not to work. As we can build in Debian anyway why
not include an image that has all the compilers available for
non-docker invocation.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20200701135652.1366-33-alex.bennee@linaro.org>
Diffstat (limited to '.gitlab-ci.d/containers.yml')
-rw-r--r-- | .gitlab-ci.d/containers.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.gitlab-ci.d/containers.yml b/.gitlab-ci.d/containers.yml index f353359fd8..a7621c4204 100644 --- a/.gitlab-ci.d/containers.yml +++ b/.gitlab-ci.d/containers.yml @@ -64,6 +64,13 @@ amd64-debian-cross-container: variables: NAME: debian-amd64-cross +amd64-debian-user-cross-container: + <<: *container_job_definition + stage: containers-layer2 + needs: ['amd64-debian10-container'] + variables: + NAME: debian-all-test-cross + amd64-debian-container: <<: *container_job_definition stage: containers-layer2 |