Commit a42577db27eb31b7f727188683cd1209b3f2f2d6

Edward Thomson 2021-08-16T14:09:17

ci: update centos builds

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/ci/docker/centos8 b/ci/docker/centos8
index da0f2da..bda4ee7 100644
--- a/ci/docker/centos8
+++ b/ci/docker/centos8
@@ -2,6 +2,7 @@ ARG BASE=centos:8
 FROM ${BASE} AS yum
 RUN yum install -y \
 	which \
+	bzip2 \
 	git \
 	libarchive \
 	cmake \
@@ -31,7 +32,7 @@ RUN cd /tmp && \
     curl --insecure --location --silent --show-error https://sourceware.org/pub/valgrind/valgrind-3.15.0.tar.bz2 | \
         tar -xj && \
     cd valgrind-3.15.0 && \
-    CC=clang-10 ./configure && \
+    ./configure && \
     make MAKEFLAGS="-j -l$(grep -c ^processor /proc/cpuinfo)" && \
     make install && \
     cd .. && \