On Wed, Dec 30, 2020 at 2:12 PM Nicolas Iooss <nicolas.iooss@xxxxxxx> wrote: > > Use the Vagrant configuration in scripts/ci in a workflow for GitHub > Actions. > > Signed-off-by: Nicolas Iooss <nicolas.iooss@xxxxxxx> > --- > Example of run: https://github.com/fishilico/selinux/runs/1627586446 > > .github/workflows/vm_testsuite.yml | 22 ++++++++++++++++++++++ > 1 file changed, 22 insertions(+) > create mode 100644 .github/workflows/vm_testsuite.yml > > diff --git a/.github/workflows/vm_testsuite.yml b/.github/workflows/vm_testsuite.yml > new file mode 100644 > index 000000000000..af2fad1e73f5 > --- /dev/null > +++ b/.github/workflows/vm_testsuite.yml > @@ -0,0 +1,22 @@ > +name: Run SELinux testsuite in a virtual machine > + > +on: [push, pull_request] > + > +jobs: > + vm_testsuite: > + > + # Use VirtualBox+vagrant on macOS, as described in https://github.com/actions/virtual-environments/issues/433 > + runs-on: macos-latest Good find, they support nested virtualization. > + > + steps: > + - uses: actions/checkout@v2 > + > + - name: Create Vagrant VM > + run: | > + cd scripts/ci > + vagrant up > + > + - name: Run SELinux testsuite in the VM > + run: | > + cd scripts/ci > + vagrant ssh -- ./run-selinux-test.sh > -- > 2.29.2 > LGTM ack. Do you have any fork that has a build with this just to see it running?