laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/42323?usp=email )
Change subject: ansible: osmocom-obs-worker: remove lxc<5 ......................................................................
ansible: osmocom-obs-worker: remove lxc<5
I have applied a patch in our OBS server, which adjusts the version check so we can build packages with newer LXC versions and sent it upstream: https://github.com/openSUSE/obs-build/pull/1127
Remove the lxc version constraint (which finally allowed upgrading to a newer opensuse version).
Related: OS#6975 Change-Id: I1e690bf91c4bebd1d46b51ec490daa339ea1107f --- M ansible/roles/osmocom-obs-worker/tasks/obs.yml 1 file changed, 1 insertion(+), 4 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, but someone else must approve laforge: Looks good to me, approved
diff --git a/ansible/roles/osmocom-obs-worker/tasks/obs.yml b/ansible/roles/osmocom-obs-worker/tasks/obs.yml index c3e6c07..a0a6227 100644 --- a/ansible/roles/osmocom-obs-worker/tasks/obs.yml +++ b/ansible/roles/osmocom-obs-worker/tasks/obs.yml @@ -32,10 +32,7 @@ when: obs_vm_type == "lxc" zypper: name: - # obs-build requires lxc <= 4.x (OS#6186#note-50) - # https://github.com/openSUSE/obs-build/issues/1060 - - lxc<5.0.0 - - liblxc1<5.0.0 + - lxc
- name: install qemu when: obs_vm_type != "lxc"