diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2023-01-19 15:02:30 +0100 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-02-06 13:21:25 +0100 |
| commit | a925323008563236ae7954bed97b6c4d64c38f90 (patch) | |
| tree | 240f96bf846b2fe6bfa4da0a9a452209e0954908 /scripts/ci/org.centos | |
| parent | 4b950af8d3c4f4e7e6a76396062d5760e70a743e (diff) | |
| download | focaccia-qemu-a925323008563236ae7954bed97b6c4d64c38f90.tar.gz focaccia-qemu-a925323008563236ae7954bed97b6c4d64c38f90.zip | |
scripts/ci: add capstone development packages
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'scripts/ci/org.centos')
| -rw-r--r-- | scripts/ci/org.centos/stream/8/build-environment.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/ci/org.centos/stream/8/build-environment.yml b/scripts/ci/org.centos/stream/8/build-environment.yml index fe8807b7b0..95474ad034 100644 --- a/scripts/ci/org.centos/stream/8/build-environment.yml +++ b/scripts/ci/org.centos/stream/8/build-environment.yml @@ -10,6 +10,14 @@ check_mode: yes register: centos_stream_8 + - name: Enable EPEL repo on CentOS Stream 8 + dnf: + name: + - epel-release + state: present + when: + - centos_stream_8 + - name: Enable PowerTools repo on CentOS Stream 8 ini_file: path: /etc/yum.repos.d/CentOS-Stream-PowerTools.repo @@ -22,6 +30,7 @@ - name: Install basic packages to build QEMU on CentOS Stream 8 dnf: name: + - capstone-devel - device-mapper-multipath-devel - glusterfs-api-devel - gnutls-devel |