view ci/setup-xvfb.sh @ 27529:3f7e59eac8f4 v8.2.4292

patch 8.2.4292: test fails Commit: https://github.com/vim/vim/commit/02a977ea5ee733412011a7f259a4efa0ffc95f1a Author: Bram Moolenaar <Bram@vim.org> Date: Thu Feb 3 21:29:39 2022 +0000 patch 8.2.4292: test fails Problem: Test fails. Solution: Adjust the expected error number.
author Bram Moolenaar <Bram@vim.org>
date Thu, 03 Feb 2022 22:30:03 +0100
parents 1984a3fcc953
children
line wrap: on
line source

#!/bin/bash
set -e

apt-get install -y xvfb

cat <<EOT >/etc/systemd/system/xvfb.service
[Unit]
Description=X Virtual Frame Buffer Service
After=network.target
[Service]
ExecStart=/usr/bin/Xvfb :99 -screen 0 1024x768x24
[Install]
WantedBy=multi-user.target
EOT

systemctl enable xvfb.service
systemctl start xvfb.service