Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cbi-dev] How to setup a CI instance to run builds using Xvfb?

Hi,

Note that if you're lucky enough to run on a Linux distro that uses a recent Gnome, you can (and should better) use mutter headless:

Here is for example how this can be achieved in a GitHub workflow using Ubuntu

- name: Setup Display 📺
  run: |
     sudo apt-get install mutter dbus-x11;
     dbus-launch --auto-syntax > dbus-env;
     . dbus-env;
     mutter --no-x11 --headless --virtual-monitor 1920x1080 &

Back to the top