view ci/setup-xvfb.sh @ 24901:fd6e5c816654 v8.2.2988

patch 8.2.2988: Vim9: debugger test fails Commit: https://github.com/vim/vim/commit/c3a27bbd53a4653c2d8122a047a4cf2cfc52ed21 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 13 15:16:01 2021 +0200 patch 8.2.2988: Vim9: debugger test fails Problem: Vim9: debugger test fails. Solution: Get the debugger instructions when needed.
author Bram Moolenaar <Bram@vim.org>
date Sun, 13 Jun 2021 15:30:02 +0200
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