[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH] CI: Drop more TravisCI remnants
This was missed from previous attempts to remove Travis. Fixes: e0dc9b095e7c ("CI: Drop TravisCI") Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- CC: George Dunlap <George.Dunlap@xxxxxxxxxxxxx> CC: Jan Beulich <JBeulich@xxxxxxxx> CC: Stefano Stabellini <sstabellini@xxxxxxxxxx> CC: Wei Liu <wl@xxxxxxx> CC: Julien Grall <julien@xxxxxxx> CC: Henry Wang <Henry.Wang@xxxxxxx> Preforably for 4.17. Not a bugfix, but this does reduce the amount of irrelevant junk in the tree. --- MAINTAINERS | 1 - scripts/travis-build | 32 -------------------------------- 2 files changed, 33 deletions(-) delete mode 100755 scripts/travis-build diff --git a/MAINTAINERS b/MAINTAINERS index 816656950ae2..175f10f33fc9 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -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@xxxxxxxx> diff --git a/scripts/travis-build b/scripts/travis-build deleted file mode 100755 index 84d74266a01f..000000000000 --- a/scripts/travis-build +++ /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 -- 2.11.0
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |