From 93f9afa1e039cbf681adcc6d170aec987d9f0f65 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Thu, 1 Aug 2024 12:39:22 +0200 Subject: [PATCH] ci: remove dead start-x.sh script Fixes: 599e8bf9212a1ef2f85a ("ci/valve: remove the traces runner") Part-of: --- .gitlab-ci/common/start-x.sh | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 .gitlab-ci/common/start-x.sh diff --git a/.gitlab-ci/common/start-x.sh b/.gitlab-ci/common/start-x.sh deleted file mode 100755 index ccd132358cb..00000000000 --- a/.gitlab-ci/common/start-x.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh - -set -ex - -_XORG_SCRIPT="/xorg-script" -_FLAG_FILE="/xorg-started" - -echo "touch ${_FLAG_FILE}; sleep 100000" > "${_XORG_SCRIPT}" -if [ "x$1" != "x" ]; then - export LD_LIBRARY_PATH="${1}/lib" - export LIBGL_DRIVERS_PATH="${1}/lib/dri" -fi -xinit /bin/sh "${_XORG_SCRIPT}" -- /usr/bin/Xorg vt45 -noreset -s 0 -dpms -logfile /Xorg.0.log & - -# Wait for xorg to be ready for connections. -for _ in 1 2 3 4 5; do - if [ -e "${_FLAG_FILE}" ]; then - break - fi - sleep 5 -done