All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] testing/next: current patches (docker, test asset migration)
@ 2026-01-28 10:58 Alex Bennée
  2026-01-28 10:58 ` [PATCH 1/2] tests/docker: rename wasm cross container Alex Bennée
  2026-01-28 10:58 ` [PATCH 2/2] tests/functional: migrate sbsa_ref test images Alex Bennée
  0 siblings, 2 replies; 14+ messages in thread
From: Alex Bennée @ 2026-01-28 10:58 UTC (permalink / raw)
  To: qemu-devel
  Cc: Leif Lindholm, qemu-arm, Alex Bennée,
	Philippe Mathieu-Daudé, Peter Maydell, Thomas Huth,
	Radoslaw Biernacki

Nothing much in my queue at the moment except a minor fix for the
container builds and migrating the last of the assets from old linaro
servers.

Alex.

Alex Bennée (2):
  tests/docker: rename wasm cross container
  tests/functional: migrate sbsa_ref test images

 .gitlab-ci.d/container-cross.yml                 |  1 -
 .gitlab-ci.d/container-template.yml              |  4 +---
 ...sm-cross.docker => emsdk-wasm64-cross.docker} |  0
 tests/functional/aarch64/test_sbsaref.py         | 16 ++++++----------
 4 files changed, 7 insertions(+), 14 deletions(-)
 rename tests/docker/dockerfiles/{emsdk-wasm-cross.docker => emsdk-wasm64-cross.docker} (100%)

-- 
2.47.3



^ permalink raw reply	[flat|nested] 14+ messages in thread
* Re: [PATCH 1/2] tests/docker: rename wasm cross container
@ 2026-01-29 14:59 Kohei Tokunaga
  0 siblings, 0 replies; 14+ messages in thread
From: Kohei Tokunaga @ 2026-01-29 14:59 UTC (permalink / raw)
  To: alex.bennee, qemu-devel

Hi Alex,

Thank you for fixing this.

 > Now we are 64 bit only there is no need to keep the generic name. This
 > also fixes a check failure in the weekly container build which was
 > checking containers based on the expansion of DOCKER_IMAGES which is
 > based of the dockerfile names.
 >
 > Remove the DOCKERFILE bits that were added to handle multiple
 > containers from the same dockerfile.
 >
 > Fixes: 4203ea0247f (gitlab-ci: Add build tests for wasm64)
 > Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
 > Message-ID: <20260127092745.2978371-1-alex.bennee@linaro.org>
 > Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
 >
 > ---
 > v2
 >   - also revert the DOCKERFILE bits that are no longer needed.
 > ---
 >  .gitlab-ci.d/container-cross.yml   | 1 -
 >  .gitlab-ci.d/container-template.yml  | 4 +---
 >  .../{emsdk-wasm-cross.docker => emsdk-wasm64-cross.docker}    | 0
 >  3 files changed, 1 insertion(+), 4 deletions(-)
 >  rename tests/docker/dockerfiles/{emsdk-wasm-cross.docker => 
emsdk-wasm64-cross.docker} (100%)
 >
 > diff --git a/.gitlab-ci.d/container-cross.yml 
b/.gitlab-ci.d/container-cross.yml
 > index d7ae57fb1f5..2a0cea6ce1a 100644
 > --- a/.gitlab-ci.d/container-cross.yml
 > +++ b/.gitlab-ci.d/container-cross.yml
 > @@ -78,4 +78,3 @@ wasm64-emsdk-cross-container:
 >    extends: .container_job_template
 >    variables:
 >      NAME: emsdk-wasm64-cross
 > -    DOCKERFILE: emsdk-wasm-cross
 > diff --git a/.gitlab-ci.d/container-template.yml 
b/.gitlab-ci.d/container-template.yml
 > index 6eaa2f804df..8c7311cca57 100644
 > --- a/.gitlab-ci.d/container-template.yml
 > +++ b/.gitlab-ci.d/container-template.yml
 > @@ -10,14 +10,12 @@
 >      - export 
COMMON_TAG="$CI_REGISTRY/qemu-project/qemu/qemu/$NAME:latest"
 >      - docker login $CI_REGISTRY -u "$CI_REGISTRY_USER" -p 
"$CI_REGISTRY_PASSWORD"
 >      - until docker info; do sleep 1; done
 > -    - export DOCKERFILE_NAME=${DOCKERFILE:-$NAME}
 >    script:
 >      - echo "TAG:$TAG"
 >      - echo "COMMON_TAG:$COMMON_TAG"
 >      - docker build --tag "$TAG" --cache-from "$TAG" --cache-from 
"$COMMON_TAG"
 >        --build-arg BUILDKIT_INLINE_CACHE=1
 > -      $BUILD_ARGS
 > -      -f "tests/docker/dockerfiles/$DOCKERFILE_NAME.docker" "."
 > +      -f "tests/docker/dockerfiles/$NAME.docker" "."
 >      - docker push "$TAG"
 >    after_script:
 >      - docker logout
 > diff --git a/tests/docker/dockerfiles/emsdk-wasm-cross.docker 
b/tests/docker/dockerfiles/emsdk-wasm64-cross.docker
 > similarity index 100%
 > rename from tests/docker/dockerfiles/emsdk-wasm-cross.docker
 > rename to tests/docker/dockerfiles/emsdk-wasm64-cross.docker

Reviewed-by: Kohei Tokunaga <ktokunaga.mail@gmail.com>

Regards,
Kohei Tokunaga



^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2026-02-02 14:14 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-28 10:58 [PATCH 0/2] testing/next: current patches (docker, test asset migration) Alex Bennée
2026-01-28 10:58 ` [PATCH 1/2] tests/docker: rename wasm cross container Alex Bennée
2026-01-29 15:02   ` Daniel P. Berrangé
2026-01-28 10:58 ` [PATCH 2/2] tests/functional: migrate sbsa_ref test images Alex Bennée
2026-01-28 15:58   ` Pierrick Bouvier
2026-01-28 16:25   ` Peter Maydell
2026-01-28 17:24     ` Alex Bennée
2026-01-28 18:14     ` Philippe Mathieu-Daudé
2026-01-29  0:53     ` Pierrick Bouvier
2026-01-29 12:13       ` Alex Bennée
2026-01-28 16:53   ` Philippe Mathieu-Daudé
2026-02-02 13:18   ` Michael Tokarev
2026-02-02 14:13     ` Alex Bennée
  -- strict thread matches above, loose matches on Subject: below --
2026-01-29 14:59 [PATCH 1/2] tests/docker: rename wasm cross container Kohei Tokunaga

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.