summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Orzel <michal.orzel@amd.com>2023-04-26 09:28:28 +0200
committerJan Beulich <jbeulich@suse.com>2023-04-26 09:28:28 +0200
commit87cb0fd8757542893336aa2ffce3947451adf144 (patch)
tree1b0639a985baa2cdb7f58340bc94d2f309412405
parent7963cdbf91d8a8d2f8338171adab3807b20f658a (diff)
downloadxen-stable-4.15.tar.gz
automation: Remove installation of packages from test scriptsstaging-4.15stable-4.15
Now, when these packages are already installed in the respective containers, we can remove them from the test scripts. Signed-off-by: Michal Orzel <michal.orzel@amd.com> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org> master commit: 72cfe1c3ad1fae95f4f0ac51dbdd6838264fdd7f master date: 2022-12-09 14:55:33 -0800
-rwxr-xr-xautomation/scripts/qemu-alpine-arm64.sh8
-rwxr-xr-xautomation/scripts/qemu-smoke-arm64.sh10
-rwxr-xr-xautomation/scripts/qemu-smoke-x86-64.sh5
3 files changed, 0 insertions, 23 deletions
diff --git a/automation/scripts/qemu-alpine-arm64.sh b/automation/scripts/qemu-alpine-arm64.sh
index f4ac2d856f..e191de3765 100755
--- a/automation/scripts/qemu-alpine-arm64.sh
+++ b/automation/scripts/qemu-alpine-arm64.sh
@@ -2,14 +2,6 @@
set -ex
-apt-get -qy update
-apt-get -qy install --no-install-recommends u-boot-qemu \
- u-boot-tools \
- device-tree-compiler \
- cpio \
- curl \
- busybox-static
-
# DomU Busybox
cd binaries
mkdir -p initrd
diff --git a/automation/scripts/qemu-smoke-arm64.sh b/automation/scripts/qemu-smoke-arm64.sh
index 53086a5ac7..4e6de7e624 100755
--- a/automation/scripts/qemu-smoke-arm64.sh
+++ b/automation/scripts/qemu-smoke-arm64.sh
@@ -2,16 +2,6 @@
set -ex
-# Install QEMU
-export DEBIAN_FRONTENT=noninteractive
-apt-get -qy update
-apt-get -qy install --no-install-recommends u-boot-qemu \
- u-boot-tools \
- device-tree-compiler \
- busybox-static \
- cpio \
- curl
-
# XXX QEMU looks for "efi-virtio.rom" even if it is unneeded
curl -fsSLO https://github.com/qemu/qemu/raw/v5.2.0/pc-bios/efi-virtio.rom
./binaries/qemu-system-aarch64 \
diff --git a/automation/scripts/qemu-smoke-x86-64.sh b/automation/scripts/qemu-smoke-x86-64.sh
index 09152e3e9c..be7e21872e 100755
--- a/automation/scripts/qemu-smoke-x86-64.sh
+++ b/automation/scripts/qemu-smoke-x86-64.sh
@@ -5,11 +5,6 @@ set -ex
# variant should be either pv or pvh
variant=$1
-# Install QEMU
-export DEBIAN_FRONTENT=noninteractive
-apt-get -qy update
-apt-get -qy install qemu-system-x86
-
# Clone and build XTF
git clone https://xenbits.xen.org/git-http/xtf.git
cd xtf && make -j$(nproc) && cd -