view ci/setup-xvfb.sh @ 24365:f2bd92589670 v8.2.2723

patch 8.2.2723: assignment test fails Commit: https://github.com/vim/vim/commit/58fb7c39a04aabfa399ae4f2142ee0728bc22483 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Apr 5 20:59:41 2021 +0200 patch 8.2.2723: assignment test fails Problem: Assignment test fails. Solution: Adjust error number.
author Bram Moolenaar <Bram@vim.org>
date Mon, 05 Apr 2021 21:00:05 +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