Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Updated FreeBSD workflow to fix the boot loop issue. #217

Merged
merged 1 commit into from
Dec 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/bsd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ on: [push, pull_request]

jobs:
freebsd:
runs-on: macos-12
runs-on: ubuntu-22.04
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this correct? I thought FreeBSD only used to work on the OSX builders; is there a doc reference to talk about it?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It has changed recently (see https://github.com/vmactions/freebsd-vm/releases/tag/v1.0.0). The maintainers managed to replace VirtualBox by libvirt and Qemu, so they could get rid of the cumbersome macOS builder and replace it with Ubuntu.

steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Build
uses: vmactions/freebsd-vm@v0.3.0
uses: vmactions/freebsd-vm@v1.0.2
with:
run: |
pkg update
Expand Down
Loading