view ci/setup-xvfb.sh @ 25086:088c1ddac618 v8.2.3080

patch 8.2.3080: recover test fails on 32bit systems Commit: https://github.com/vim/vim/commit/576cb75ceb38ed077938d4a1c1265095050f6105 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Wed Jun 30 21:30:10 2021 +0200 patch 8.2.3080: recover test fails on 32bit systems Problem: Recover test fails on 32bit systems. (Ond?ej S?kup) Solution: Detect 32/64 bit systems. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/8485, closes #8479)
author Bram Moolenaar <Bram@vim.org>
date Wed, 30 Jun 2021 21:45: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