view ci/setup-xvfb.sh @ 30849:fe54ba93f830 v9.0.0759

patch 9.0.0759: huge build on macos does not use Perl Commit: https://github.com/vim/vim/commit/fa7bb1d937308a60280e070b01baba5342148ff7 Author: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Sat Oct 15 14:17:37 2022 +0100 patch 9.0.0759: huge build on macos does not use Perl Problem: Huge build on macos does not use Perl. Solution: Re-enable the Perl interface using "dynamic". (closes https://github.com/vim/vim/issues/11375)
author Bram Moolenaar <Bram@vim.org>
date Sat, 15 Oct 2022 15:30:03 +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