aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJohn Levon <john.levon@nutanix.com>2022-05-09 09:58:02 +0100
committerGitHub <noreply@github.com>2022-05-09 09:58:02 +0100
commitbc44bd1a246dc95b91faae30defafc3c259f5c4d (patch)
tree08dbf2d5d4949d28716604bfe3db650b5c534e75 /.github
parente47daa3ca898d9cfaed8630a01519cd51fc4aeea (diff)
downloadlibvfio-user-bc44bd1a246dc95b91faae30defafc3c259f5c4d.zip
libvfio-user-bc44bd1a246dc95b91faae30defafc3c259f5c4d.tar.gz
libvfio-user-bc44bd1a246dc95b91faae30defafc3c259f5c4d.tar.bz2
drop usage of MD5_*() (#667)
These functions from openssl are deprecated, and hence break builds with openssl 3.0, which now has a compiler warning for them. We only use them to check buffer contents; replace them with CRC code from DPDK instead, and entirely drop use of openssl. Signed-off-by: John Levon <john.levon@nutanix.com> Reviewed-by: Swapnil Ingle <swapnil.ingle@nutanix.com> Reviewed-by: Thanos Makatos <thanos.makatos@nutanix.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/pull_request.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml
index 6299969..a970009 100644
--- a/.github/workflows/pull_request.yml
+++ b/.github/workflows/pull_request.yml
@@ -23,7 +23,7 @@ jobs:
# NB: no working flake8
yum -y install make gcc-4.8.5 epel-release pciutils
yum -y install clang cmake json-c-devel libcmocka-devel \
- openssl-devel valgrind python36-pytest which
+ valgrind python36-pytest which
make pre-push VERBOSE=1
fedora-35:
timeout-minutes: 10
@@ -34,6 +34,6 @@ jobs:
- name: pre-push
run: |
dnf -y install --releasever=35 \
- gcc make clang cmake json-c-devel libcmocka-devel openssl-devel \
- pciutils diffutils valgrind python3-pytest python3-flake8 which
+ gcc make clang cmake json-c-devel libcmocka-devel pciutils \
+ diffutils valgrind python3-pytest python3-flake8 which
make pre-push VERBOSE=1