libselinux: add build time option to drop hard dependency on libpcre2 #521
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
- 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 |