Skip to content

Commit

Permalink
GitHub Actions: do not use macOS latest image for now
Browse files Browse the repository at this point in the history
GitHub is currently migrating its macos-latest runner to macOS 11:
actions/runner-images#4060

Unfortunately, installing VirtualBox and Vagrant on this new version of
macOS is not easy, and the current macos11 runner does not support
running virtual machines using Vagrant. This issue is being fixed on
actions/runner-images#4010 .

Until this Pull Request is merged, use macos10 runner instead of
macos-latest, to continue using Vagrant to run the SELinux testsuite in
a virtual machine.

Signed-off-by: Nicolas Iooss <[email protected]>
  • Loading branch information
fishilico committed Sep 25, 2021
1 parent bf239e5 commit e71a546
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/vm_testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ jobs:
vm_testsuite:

# Use VirtualBox+vagrant on macOS, as described in https://github.com/actions/virtual-environments/issues/433
runs-on: macos-latest
# Use an old version of macOS until https://github.com/actions/virtual-environments/pull/4010 is merged.
runs-on: macos-10

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit e71a546

Please sign in to comment.