view ci/setup-xvfb.sh @ 28073:f4115d080c1b v8.2.4561

patch 8.2.4561: build failure with some combination of features Commit: https://github.com/vim/vim/commit/424da7aa481032f501158a671a0c1d117507afdd Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 13 19:08:48 2022 +0000 patch 8.2.4561: build failure with some combination of features Problem: Build failure with some combination of features. (John Marriott) Solution: Adjust #ifdef.
author Bram Moolenaar <Bram@vim.org>
date Sun, 13 Mar 2022 20:15: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