]> xenbits.xensource.com Git - xen.git/commitdiff
CI: Drop more TravisCI remnants
authorAndrew Cooper <andrew.cooper3@citrix.com>
Wed, 26 Oct 2022 12:39:06 +0000 (13:39 +0100)
committerStefano Stabellini <stefano.stabellini@amd.com>
Wed, 26 Oct 2022 19:18:54 +0000 (12:18 -0700)
This was missed from previous attempts to remove Travis.

Fixes: e0dc9b095e7c ("CI: Drop TravisCI")
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Stefano Stabellini <sstabellini@kernel.org>
Release-acked-by: Henry Wang <Henry.Wang@arm.com>
MAINTAINERS
scripts/travis-build [deleted file]

index 816656950ae2c95d3461e25247f8c6c7f01b3d48..175f10f33fc95ca488274ea049103fa91919abad 100644 (file)
@@ -274,7 +274,6 @@ W:  https://gitlab.com/xen-project/xen
 S:     Supported
 F:     .gitlab-ci.yml
 F:     automation/
-F:     scripts/travis-build
 
 CPU POOLS
 M:     Juergen Gross <jgross@suse.com>
diff --git a/scripts/travis-build b/scripts/travis-build
deleted file mode 100755 (executable)
index 84d7426..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/bash -ex
-
-$CC --version
-
-# random config or default config
-if [[ "${RANDCONFIG}" == "y" ]]; then
-    make -C xen KCONFIG_ALLCONFIG=tools/kconfig/allrandom.config randconfig
-else
-    make -C xen defconfig
-fi
-
-# build up our configure options
-cfgargs=()
-cfgargs+=("--disable-stubdom") # more work needed into building this
-cfgargs+=("--disable-rombios")
-cfgargs+=("--enable-docs")
-cfgargs+=("--with-system-seabios=/usr/share/seabios/bios.bin")
-
-# Qemu requires Python 3.5 or later
-if ! type python3 || python3 -c "import sys; res = sys.version_info < (3, 5); exit(not(res))"; then
-    cfgargs+=("--with-system-qemu=/bin/false")
-fi
-
-if [[ "${XEN_TARGET_ARCH}" == "x86_64" ]]; then
-    cfgargs+=("--enable-tools")
-else
-    cfgargs+=("--disable-tools") # we don't have the cross depends installed
-fi
-
-./configure "${cfgargs[@]}"
-
-make dist