All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH] tests/docker: rename wasm cross container
@ 2026-01-27  9:27 Alex Bennée
  2026-01-27 17:07 ` Pierrick Bouvier
  2026-01-27 17:12 ` Daniel P. Berrangé
  0 siblings, 2 replies; 3+ messages in thread
From: Alex Bennée @ 2026-01-27  9:27 UTC (permalink / raw)
  To: qemu-devel
  Cc: richard.henderson, peter.maydell, Alex Bennée,
	Philippe Mathieu-Daudé, Thomas Huth

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.

Fixes: 4203ea0247f (gitlab-ci: Add build tests for wasm64)
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
 .gitlab-ci.d/container-cross.yml                                | 2 +-
 .../{emsdk-wasm-cross.docker => emsdk-wasm64-cross.docker}      | 0
 2 files changed, 1 insertion(+), 1 deletion(-)
 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..923044e9a12 100644
--- a/.gitlab-ci.d/container-cross.yml
+++ b/.gitlab-ci.d/container-cross.yml
@@ -78,4 +78,4 @@ wasm64-emsdk-cross-container:
   extends: .container_job_template
   variables:
     NAME: emsdk-wasm64-cross
-    DOCKERFILE: emsdk-wasm-cross
+    DOCKERFILE: emsdk-wasm64-cross
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
-- 
2.47.3



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

* Re: [RFC PATCH] tests/docker: rename wasm cross container
  2026-01-27  9:27 [RFC PATCH] tests/docker: rename wasm cross container Alex Bennée
@ 2026-01-27 17:07 ` Pierrick Bouvier
  2026-01-27 17:12 ` Daniel P. Berrangé
  1 sibling, 0 replies; 3+ messages in thread
From: Pierrick Bouvier @ 2026-01-27 17:07 UTC (permalink / raw)
  To: Alex Bennée, qemu-devel
  Cc: richard.henderson, peter.maydell, Philippe Mathieu-Daudé,
	Thomas Huth

On 1/27/26 1:27 AM, Alex Bennée wrote:
> 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.
> 
> Fixes: 4203ea0247f (gitlab-ci: Add build tests for wasm64)
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> ---
>   .gitlab-ci.d/container-cross.yml                                | 2 +-
>   .../{emsdk-wasm-cross.docker => emsdk-wasm64-cross.docker}      | 0
>   2 files changed, 1 insertion(+), 1 deletion(-)
>   rename tests/docker/dockerfiles/{emsdk-wasm-cross.docker => emsdk-wasm64-cross.docker} (100%)
> 

Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>


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

* Re: [RFC PATCH] tests/docker: rename wasm cross container
  2026-01-27  9:27 [RFC PATCH] tests/docker: rename wasm cross container Alex Bennée
  2026-01-27 17:07 ` Pierrick Bouvier
@ 2026-01-27 17:12 ` Daniel P. Berrangé
  1 sibling, 0 replies; 3+ messages in thread
From: Daniel P. Berrangé @ 2026-01-27 17:12 UTC (permalink / raw)
  To: Alex Bennée
  Cc: qemu-devel, richard.henderson, peter.maydell,
	Philippe Mathieu-Daudé, Thomas Huth

On Tue, Jan 27, 2026 at 09:27:45AM +0000, Alex Bennée wrote:
> 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.
> 
> Fixes: 4203ea0247f (gitlab-ci: Add build tests for wasm64)
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> ---
>  .gitlab-ci.d/container-cross.yml                                | 2 +-
>  .../{emsdk-wasm-cross.docker => emsdk-wasm64-cross.docker}      | 0
>  2 files changed, 1 insertion(+), 1 deletion(-)
>  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..923044e9a12 100644
> --- a/.gitlab-ci.d/container-cross.yml
> +++ b/.gitlab-ci.d/container-cross.yml
> @@ -78,4 +78,4 @@ wasm64-emsdk-cross-container:
>    extends: .container_job_template
>    variables:
>      NAME: emsdk-wasm64-cross
> -    DOCKERFILE: emsdk-wasm-cross
> +    DOCKERFILE: emsdk-wasm64-cross

Drop this variable entirely, since it duplicates $NAME, which already
sets the default value for DOCKERFILE.

Given that this naming divergance broke the CI job, we should also
modify container-template.yml to revert all the changes that were
introducd as part of 4203ea0247f

With regards,
Daniel
-- 
|: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org         -o-            https://fstop138.berrange.com :|
|: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|



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

end of thread, other threads:[~2026-01-27 17:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-27  9:27 [RFC PATCH] tests/docker: rename wasm cross container Alex Bennée
2026-01-27 17:07 ` Pierrick Bouvier
2026-01-27 17:12 ` Daniel P. Berrangé

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.