You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
489 B
23 lines
489 B
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-12
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- 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
|