[PATCH] CI: Drop the now-obsolete 11-riscv64.dockerfile

Andrew Cooper posted 1 patch 1 day, 23 hours ago
Patches applied successfully (tree, apply log)
git fetch https://gitlab.com/xen-project/patchew/xen tags/patchew/20250307151749.3066186-1-andrew.cooper3@citrix.com
automation/build/debian/11-riscv64.dockerfile | 33 -------------------
1 file changed, 33 deletions(-)
delete mode 100644 automation/build/debian/11-riscv64.dockerfile
[PATCH] CI: Drop the now-obsolete 11-riscv64.dockerfile
Posted by Andrew Cooper 1 day, 23 hours ago
Fixes: bd9bda50553b ("automation: drop debian:11-riscv64 container")
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
---
CC: Oleksii Kurochko <oleksii.kurochko@gmail.com>
CC: Stefano Stabellini <sstabellini@kernel.org>
---
 automation/build/debian/11-riscv64.dockerfile | 33 -------------------
 1 file changed, 33 deletions(-)
 delete mode 100644 automation/build/debian/11-riscv64.dockerfile

diff --git a/automation/build/debian/11-riscv64.dockerfile b/automation/build/debian/11-riscv64.dockerfile
deleted file mode 100644
index a55047c5019a..000000000000
--- a/automation/build/debian/11-riscv64.dockerfile
+++ /dev/null
@@ -1,33 +0,0 @@
-# syntax=docker/dockerfile:1
-FROM --platform=linux/amd64 debian:bullseye-slim
-LABEL maintainer.name="The Xen Project"
-LABEL maintainer.email="xen-devel@lists.xenproject.org"
-
-ENV DEBIAN_FRONTEND=noninteractive
-ENV CROSS_COMPILE=riscv64-linux-gnu-
-ENV XEN_TARGET_ARCH=riscv64
-
-RUN <<EOF
-#!/bin/bash
-    set -e
-
-    useradd --create-home user
-
-    apt-get update
-
-    DEPS=(
-        # Xen
-        bison
-        build-essential
-        checkpolicy
-        flex
-        gcc-riscv64-linux-gnu
-        python3-minimal
-    )
-
-    apt-get -y --no-install-recommends install "${DEPS[@]}"
-    rm -rf /var/lib/apt/lists/*
-EOF
-
-USER user
-WORKDIR /build
-- 
2.39.5