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

Require one of the lxd or lxd-installer debs or the lxd snap for the virtualization tests. (BugFix) #1181

Merged
merged 1 commit into from
Apr 17, 2024
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 providers/base/units/virtualization/jobs.pxu
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ environ: LXD_TEMPLATE KVM_IMAGE
estimated_duration: 60.0
requires:
executable.name == 'lxc'
snap.name == 'lxd'
package.name == 'lxd-installer' or snap.name == 'lxd'
command: virtualization.py --debug lxdvm
_description:
Verifies that an LXD Virtual Machine can be created and launched
Expand All @@ -19,7 +19,7 @@ environ: LXD_TEMPLATE LXD_ROOTFS
estimated_duration: 30.0
requires:
executable.name == 'lxc'
package.name == 'lxd' or snap.name == 'lxd'
package.name == 'lxd' or package.name == 'lxd-installer' or snap.name == 'lxd'
command: virtualization.py --debug lxd
_description:
Verifies that an LXD container can be created and launched
Expand Down
Loading