mirror of
https://github.com/vim/vim
synced 2025-03-15 06:17:51 +01:00
Problem: Github actions CI isn't used for all available platforms. Solution: Update the github workflows. (Ozaki Kiichi, closes #7433)
17 lines
321 B
Bash
17 lines
321 B
Bash
#!/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
|