]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
tests/docker: rename wasm cross container
authorAlex Bennée <alex.bennee@linaro.org>
Wed, 28 Jan 2026 10:58:38 +0000 (10:58 +0000)
committerAlex Bennée <alex.bennee@linaro.org>
Fri, 30 Jan 2026 13:52:48 +0000 (13:52 +0000)
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>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-ID: <20260128105839.3487840-2-alex.bennee@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
.gitlab-ci.d/container-cross.yml
.gitlab-ci.d/container-template.yml
tests/docker/dockerfiles/emsdk-wasm64-cross.docker [moved from tests/docker/dockerfiles/emsdk-wasm-cross.docker with 100% similarity]

index d7ae57fb1f52db419d68e3152bdfe3e1b6437379..2a0cea6ce1a7310b0e070b72aa7821449ed010a6 100644 (file)
@@ -78,4 +78,3 @@ wasm64-emsdk-cross-container:
   extends: .container_job_template
   variables:
     NAME: emsdk-wasm64-cross
-    DOCKERFILE: emsdk-wasm-cross
index 6eaa2f804dfee9d7f46be17b47edc486336e328c..8c7311cca571bf7ea8d383ecea8f8664d4c20931 100644 (file)
     - 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