]> xenbits.xensource.com Git - people/andrewcoop/xen.git/commitdiff
CI: Drop the now-obsolete 11-riscv64.dockerfile
authorAndrew Cooper <andrew.cooper3@citrix.com>
Fri, 7 Mar 2025 15:16:29 +0000 (15:16 +0000)
committerAndrew Cooper <andrew.cooper3@citrix.com>
Mon, 10 Mar 2025 15:05:09 +0000 (15:05 +0000)
Fixes: bd9bda50553b ("automation: drop debian:11-riscv64 container")
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Acked-by: Stefano Stabellini <sstabellini@kernel.org>
automation/build/debian/11-riscv64.dockerfile [deleted file]

diff --git a/automation/build/debian/11-riscv64.dockerfile b/automation/build/debian/11-riscv64.dockerfile
deleted file mode 100644 (file)
index a55047c..0000000
+++ /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