[PATCH v6 1/5] ci: replace IPsec-mb package install
David Marchand
david.marchand at redhat.com
Tue Mar 12 17:05:23 CET 2024
On Tue, Mar 12, 2024 at 2:50 PM Brian Dooley <brian.dooley at intel.com> wrote:
> @@ -187,11 +193,18 @@ jobs:
> run: docker exec -i dpdk dnf update -y
> - name: Install packages
> if: steps.image_cache.outputs.cache-hit != 'true'
> - run: docker exec -i dpdk dnf install -y ccache intel-ipsec-mb-devel
> + run: docker exec -i dpdk dnf install -y ccache
Removing ipsec-mb means we lose build coverage for those crypto
drivers on Fedora.
> isa-l-devel jansson-devel libarchive-devel libatomic libbsd-devel
> libbpf-devel libfdt-devel libpcap-devel libxdp-devel ninja-build
> numactl-devel openssl-devel python3-pip python3-pyelftools
> python3-setuptools python3-wheel rdma-core-devel zlib-devel
> + - name: Install ipsec-mb library
> + if: steps.image_cache.outputs.cache-hit != 'true'
> + run: |
> + wget "https://launchpad.net/ubuntu/+archive/primary/+files/libipsec-mb-dev_1.4-3_amd64.deb"
> + wget "https://launchpad.net/ubuntu/+archive/primary/+files/libipsec-mb1_1.4-3_amd64.deb"
> + sudo dpkg -i libipsec-mb1_1.4-3_amd64.deb
> + sudo dpkg -i libipsec-mb-dev_1.4-3_amd64.deb
And this hunk is useless.
This installs the deb in the Ubuntu "host", not in the Fedora container.
--
David Marchand
More information about the dev
mailing list