view ci/setup-xvfb.sh @ 25263:5861cc1f5704 v8.2.3168

patch 8.2.3168: Vim9: type error for constant of type any Commit: https://github.com/vim/vim/commit/378697ac58b8f9705286e36d1805a052e96fb86e Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 15 19:23:18 2021 +0200 patch 8.2.3168: Vim9: type error for constant of type any Problem: Vim9: type error for constant of type any. Solution: Do add a runtime type check if a constant has type any. (closes #8570)
author Bram Moolenaar <Bram@vim.org>
date Thu, 15 Jul 2021 19:30:04 +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