From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: "Edgar E . Iglesias" <edgar.iglesias@gmail.com>, qemu-devel@nongnu.org
Cc: "Alex Bennée" <alex.bennee@linaro.org>,
"Laurent Vivier" <laurent@vivier.eu>,
"Riku Voipio" <riku.voipio@iki.fi>,
"Peter Maydell" <peter.maydell@linaro.org>,
"Thomas Huth" <thuth@redhat.com>,
devel@lists.libvirt.org,
"Philippe Mathieu-Daudé" <philmd@linaro.org>
Subject: [PATCH v2 03/15] buildsys: Remove CRIS cross container
Date: Wed, 4 Sep 2024 16:35:51 +0200 [thread overview]
Message-ID: <20240904143603.52934-4-philmd@linaro.org> (raw)
In-Reply-To: <20240904143603.52934-1-philmd@linaro.org>
We removed the cross compiled CRIS tests in the previous commit.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
configure | 4 ----
.gitlab-ci.d/container-cross.yml | 5 -----
tests/docker/Makefile.include | 1 -
tests/docker/dockerfiles/fedora-cris-cross.docker | 14 --------------
4 files changed, 24 deletions(-)
delete mode 100644 tests/docker/dockerfiles/fedora-cris-cross.docker
diff --git a/configure b/configure
index d08b71f14b..4cf8be9eeb 100755
--- a/configure
+++ b/configure
@@ -1250,7 +1250,6 @@ probe_target_compiler() {
aarch64) container_hosts="x86_64 aarch64" ;;
alpha) container_hosts=x86_64 ;;
arm) container_hosts="x86_64 aarch64" ;;
- cris) container_hosts=x86_64 ;;
hexagon) container_hosts=x86_64 ;;
hppa) container_hosts=x86_64 ;;
i386) container_hosts=x86_64 ;;
@@ -1309,9 +1308,6 @@ probe_target_compiler() {
container_image=debian-armhf-cross
container_cross_prefix=arm-linux-gnueabihf-
;;
- cris)
- container_image=fedora-cris-cross
- ;;
hexagon)
container_cross_prefix=hexagon-unknown-linux-musl-
container_cross_cc=${container_cross_prefix}clang
diff --git a/.gitlab-ci.d/container-cross.yml b/.gitlab-ci.d/container-cross.yml
index e3103940a0..78c8d2faa8 100644
--- a/.gitlab-ci.d/container-cross.yml
+++ b/.gitlab-ci.d/container-cross.yml
@@ -96,11 +96,6 @@ xtensa-debian-cross-container:
variables:
NAME: debian-xtensa-cross
-cris-fedora-cross-container:
- extends: .container_job_template
- variables:
- NAME: fedora-cris-cross
-
win64-fedora-cross-container:
extends: .container_job_template
variables:
diff --git a/tests/docker/Makefile.include b/tests/docker/Makefile.include
index 708e3a72fb..681feae744 100644
--- a/tests/docker/Makefile.include
+++ b/tests/docker/Makefile.include
@@ -117,7 +117,6 @@ docker-image-debian-microblaze-cross: $(DOCKER_FILES_DIR)/debian-toolchain.docke
# These images may be good enough for building tests but not for test builds
DOCKER_PARTIAL_IMAGES += debian-microblaze-cross
DOCKER_PARTIAL_IMAGES += debian-xtensa-cross
-DOCKER_PARTIAL_IMAGES += fedora-cris-cross
# images that are only used to build other images
DOCKER_VIRTUAL_IMAGES := debian-bootstrap debian-toolchain
diff --git a/tests/docker/dockerfiles/fedora-cris-cross.docker b/tests/docker/dockerfiles/fedora-cris-cross.docker
deleted file mode 100644
index 97c9d37ede..0000000000
--- a/tests/docker/dockerfiles/fedora-cris-cross.docker
+++ /dev/null
@@ -1,14 +0,0 @@
-#
-# Cross compiler for cris system tests
-#
-
-FROM registry.fedoraproject.org/fedora:33
-ENV PACKAGES gcc-cris-linux-gnu
-ENV MAKE /usr/bin/make
-RUN dnf install -y $PACKAGES
-RUN rpm -q $PACKAGES | sort > /packages.txt
-# As a final step configure the user (if env is defined)
-ARG USER
-ARG UID
-RUN if [ "${USER}" ]; then \
- id ${USER} 2>/dev/null || useradd -u ${UID} -U ${USER}; fi
--
2.45.2
next prev parent reply other threads:[~2024-09-04 14:36 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-04 14:35 [PATCH v2 00/15] target/cris: Remove the deprecated CRIS target Philippe Mathieu-Daudé
2024-09-04 14:35 ` [PATCH v2 01/15] tests/tcg: Remove CRIS libc test files Philippe Mathieu-Daudé
2024-09-04 14:47 ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 02/15] tests/tcg: Remove CRIS bare " Philippe Mathieu-Daudé
2024-09-04 14:41 ` Thomas Huth
2024-09-04 14:35 ` Philippe Mathieu-Daudé [this message]
2024-09-04 14:43 ` [PATCH v2 03/15] buildsys: Remove CRIS cross container Thomas Huth
2024-09-04 14:35 ` [PATCH v2 04/15] linux-user: Remove support for CRIS target Philippe Mathieu-Daudé
2024-09-04 14:45 ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 05/15] hw/cris: Remove the axis-dev88 machine Philippe Mathieu-Daudé
2024-09-04 15:26 ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 06/15] hw/cris: Remove image loader helper Philippe Mathieu-Daudé
2024-09-04 15:28 ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 07/15] hw/intc: Remove TYPE_ETRAX_FS_PIC device Philippe Mathieu-Daudé
2024-09-04 15:31 ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 08/15] hw/char: Remove TYPE_ETRAX_FS_SERIAL device Philippe Mathieu-Daudé
2024-09-04 15:45 ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 09/15] hw/net: Remove TYPE_ETRAX_FS_ETH device Philippe Mathieu-Daudé
2024-09-04 16:04 ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 10/15] hw/dma: Remove ETRAX_FS DMA device Philippe Mathieu-Daudé
2024-09-04 16:05 ` Thomas Huth
2024-09-04 14:35 ` [PATCH v2 11/15] hw/timer: Remove TYPE_ETRAX_FS_TIMER device Philippe Mathieu-Daudé
2024-09-04 16:07 ` Thomas Huth
2024-09-04 14:36 ` [PATCH v2 12/15] system: Remove support for CRIS target Philippe Mathieu-Daudé
2024-09-04 16:08 ` Thomas Huth
2024-09-04 14:36 ` [PATCH v2 13/15] target/cris: Remove the deprecated " Philippe Mathieu-Daudé
2024-09-04 16:13 ` Thomas Huth
2024-09-04 14:36 ` [PATCH v2 14/15] disas: Remove CRIS disassembler Philippe Mathieu-Daudé
2024-09-04 16:15 ` Thomas Huth
2024-09-05 1:30 ` Richard Henderson
2024-09-05 10:42 ` Philippe Mathieu-Daudé
2024-09-04 14:36 ` [PATCH v2 15/15] seccomp: Remove check for CRIS host Philippe Mathieu-Daudé
2024-09-04 16:18 ` Thomas Huth
2024-09-05 7:48 ` Paolo Bonzini
2024-09-05 10:43 ` Philippe Mathieu-Daudé
2024-09-05 1:31 ` [PATCH v2 00/15] target/cris: Remove the deprecated CRIS target Richard Henderson
2024-09-09 13:24 ` Philippe Mathieu-Daudé
2024-09-09 13:59 ` Edgar E. Iglesias
2024-09-09 14:14 ` Philippe Mathieu-Daudé
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240904143603.52934-4-philmd@linaro.org \
--to=philmd@linaro.org \
--cc=alex.bennee@linaro.org \
--cc=devel@lists.libvirt.org \
--cc=edgar.iglesias@gmail.com \
--cc=laurent@vivier.eu \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=riku.voipio@iki.fi \
--cc=thuth@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).