923a60
From b73e89404a6caed7c14d51ec907c814c673ddf46 Mon Sep 17 00:00:00 2001
923a60
From: Frantisek Sumsal <fsumsal@redhat.com>
923a60
Date: Mon, 4 Mar 2019 10:26:03 +0100
923a60
Subject: [PATCH] travis: drop the RHEL 8 manager from the RHEL 7 branch
923a60
923a60
The original plan was to keep the managers synced between
923a60
RHEL 7 and RHEL 8 branches, but in the end it doesn't make
923a60
much sense.
923a60
---
923a60
 ci/travis-centos-rhel8.sh | 134 --------------------------------------
923a60
 1 file changed, 134 deletions(-)
923a60
 delete mode 100755 ci/travis-centos-rhel8.sh
923a60
923a60
diff --git a/ci/travis-centos-rhel8.sh b/ci/travis-centos-rhel8.sh
923a60
deleted file mode 100755
923a60
index 1f72d984e0..0000000000
923a60
--- a/ci/travis-centos-rhel8.sh
923a60
+++ /dev/null
923a60
@@ -1,134 +0,0 @@
923a60
-#!/bin/bash
923a60
-
923a60
-# Run this script from the root of the systemd's git repository
923a60
-# or set REPO_ROOT to a correct path.
923a60
-#
923a60
-# Example execution on Fedora:
923a60
-# dnf install docker
923a60
-# systemctl start docker
923a60
-# export CONT_NAME="my-fancy-container"
923a60
-# ci/travis-centos.sh SETUP RUN CLEANUP
923a60
-
923a60
-PHASES=(${@:-SETUP RUN CLEANUP})
923a60
-CENTOS_RELEASE="${CENTOS_RELEASE:-latest}"
923a60
-CONT_NAME="${CONT_NAME:-centos-$CENTOS_RELEASE-$RANDOM}"
923a60
-DOCKER_EXEC="${DOCKER_EXEC:-docker exec -it $CONT_NAME}"
923a60
-DOCKER_RUN="${DOCKER_RUN:-docker run}"
923a60
-REPO_ROOT="${REPO_ROOT:-$PWD}"
923a60
-ADDITIONAL_DEPS=(systemd-ci-environment libidn2-devel python-lxml python36 ninja-build libasan net-tools strace nc busybox e2fsprogs quota dnsmasq)
923a60
-# Repo with additional depencencies to compile newer systemd on CentOS 7
923a60
-COPR_REPO="https://copr.fedorainfracloud.org/coprs/mrc0mmand/systemd-centos-ci/repo/epel-7/mrc0mmand-systemd-centos-ci-epel-7.repo"
923a60
-COPR_REPO_PATH="/etc/yum.repos.d/${COPR_REPO##*/}"
923a60
-
923a60
-function info() {
923a60
-    echo -e "\033[33;1m$1\033[0m"
923a60
-}
923a60
-
923a60
-set -e
923a60
-
923a60
-source "$(dirname $0)/travis_wait.bash"
923a60
-
923a60
-for phase in "${PHASES[@]}"; do
923a60
-    case $phase in
923a60
-        SETUP)
923a60
-            info "Setup phase"
923a60
-            info "Using Travis $CENTOS_RELEASE"
923a60
-            # Pull a Docker image and start a new container
923a60
-            docker pull centos:$CENTOS_RELEASE
923a60
-            info "Starting container $CONT_NAME"
923a60
-            $DOCKER_RUN -v $REPO_ROOT:/build:rw \
923a60
-                        -w /build --privileged=true --name $CONT_NAME \
923a60
-                        -dit --net=host centos:$CENTOS_RELEASE /sbin/init
923a60
-            # Beautiful workaround for Fedora's version of Docker
923a60
-            sleep 1
923a60
-            $DOCKER_EXEC yum makecache
923a60
-            $DOCKER_EXEC curl "$COPR_REPO" -o "$COPR_REPO_PATH"
923a60
-            $DOCKER_EXEC yum -q -y install epel-release yum-utils
923a60
-            $DOCKER_EXEC yum-config-manager -q --enable epel
923a60
-            $DOCKER_EXEC yum -y upgrade
923a60
-            # Install necessary build/test requirements
923a60
-            $DOCKER_EXEC yum -y install "${ADDITIONAL_DEPS[@]}"
923a60
-            $DOCKER_EXEC python3.6 -m ensurepip
923a60
-            $DOCKER_EXEC python3.6 -m pip install meson
923a60
-            # Create necessary symlinks
923a60
-            $DOCKER_EXEC ln --force -s /usr/bin/python3.6 /usr/bin/python3
923a60
-            $DOCKER_EXEC ln --force -s /usr/bin/ninja-build /usr/bin/ninja
923a60
-            ;;
923a60
-        RUN)
923a60
-            info "Run phase"
923a60
-            # Build systemd
923a60
-            CONFIGURE_OPTS=(
923a60
-                # RHEL8 options
923a60
-                -Dsysvinit-path=/etc/rc.d/init.d
923a60
-                -Drc-local=/etc/rc.d/rc.local
923a60
-                -Ddns-servers=''
923a60
-                -Ddev-kvm-mode=0666
923a60
-                -Dkmod=true
923a60
-                -Dxkbcommon=true
923a60
-                -Dblkid=true
923a60
-                -Dseccomp=true
923a60
-                -Dima=true
923a60
-                -Dselinux=true
923a60
-                -Dapparmor=false
923a60
-                -Dpolkit=true
923a60
-                -Dxz=true
923a60
-                -Dzlib=true
923a60
-                -Dbzip2=true
923a60
-                -Dlz4=true
923a60
-                -Dpam=true
923a60
-                -Dacl=true
923a60
-                -Dsmack=true
923a60
-                -Dgcrypt=true
923a60
-                -Daudit=true
923a60
-                -Delfutils=true
923a60
-                -Dlibcryptsetup=true
923a60
-                -Delfutils=true
923a60
-                -Dqrencode=false
923a60
-                -Dgnutls=true
923a60
-                -Dmicrohttpd=true
923a60
-                -Dlibidn2=true
923a60
-                -Dlibiptc=true
923a60
-                -Dlibcurl=true
923a60
-                -Defi=true
923a60
-                -Dtpm=true
923a60
-                -Dhwdb=true
923a60
-                -Dsysusers=true
923a60
-                -Ddefault-kill-user-processes=false
923a60
-                -Dtests=unsafe
923a60
-                -Dinstall-tests=true
923a60
-                -Dtty-gid=5
923a60
-                -Dusers-gid=100
923a60
-                -Dnobody-user=nobody
923a60
-                -Dnobody-group=nobody
923a60
-                -Dsplit-usr=false
923a60
-                -Dsplit-bin=true
923a60
-                -Db_lto=false
923a60
-                -Dnetworkd=false
923a60
-                -Dtimesyncd=false
923a60
-                -Ddefault-hierarchy=legacy
923a60
-                # Custom options
923a60
-                -Dslow-tests=true
923a60
-                -Dtests=unsafe
923a60
-                -Dinstall-tests=true
923a60
-            )
923a60
-            docker exec -it -e CFLAGS='-g -O0 -ftrapv' $CONT_NAME meson build "${CONFIGURE_OPTS[@]}"
923a60
-            $DOCKER_EXEC ninja -v -C build
923a60
-            # Let's install the new systemd and "reboot" the container to avoid
923a60
-            # unexpected fails due to incompatibilities with older systemd
923a60
-            $DOCKER_EXEC ninja -C build install
923a60
-            docker restart $CONT_NAME
923a60
-            # "Mask" the udev-test.pl, as it requires newer version of systemd-detect-virt
923a60
-            # and it's pointless to run it on a VM in a Docker container...
923a60
-            echo -ne "#!/usr/bin/perl\nexit(0);\n" > "test/udev-test.pl"
923a60
-            $DOCKER_EXEC ninja -C build test
923a60
-            ;;
923a60
-        CLEANUP)
923a60
-            info "Cleanup phase"
923a60
-            docker stop $CONT_NAME
923a60
-            docker rm -f $CONT_NAME
923a60
-            ;;
923a60
-        *)
923a60
-            echo >&2 "Unknown phase '$phase'"
923a60
-            exit 1
923a60
-    esac
923a60
-done