openqa/worker: block ffmpeg-free on aarch64
Encoding with ffmpeg rather than os-autoinst's built-in encoder gives us less broken videos, but on aarch64 it seems to cause problems, especially on stg's old, busted worker hosts - I think it's more CPU-intensive and they just can't handle the load. So, let's block it. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
39bc7aa4ce
commit
7cfe3d61e6
1 changed files with 11 additions and 0 deletions
|
@ -117,6 +117,17 @@
|
|||
- packages
|
||||
when: "ansible_architecture is defined and ansible_architecture == 'aarch64'"
|
||||
|
||||
# Encoding with ffmpeg gives us better videos, but it seems like it
|
||||
# doesn't work well on aarch64, it overwhelms the CPU and makes tests
|
||||
# often fail
|
||||
- name: Block ffmpeg-free in dnf config (aarch64 only)
|
||||
ini_file:
|
||||
path: /etc/dnf/dnf.conf
|
||||
section: main
|
||||
option: excludepkgs
|
||||
value: ffmpeg-free
|
||||
when: "ansible_architecture is defined and ansible_architecture == 'aarch64'"
|
||||
|
||||
- name: Install rng-tools (if specified by openqa_rngd var)
|
||||
package: name=rng-tools state=present
|
||||
tags:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue