This is an automated email from the ASF dual-hosted git repository.
bmahler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git
The following commit(s) were added to refs/heads/master by this push:
new 7f9311f78 [build] Use clang-14 for non ubuntu 16.04 targets in
docker-build.sh.
7f9311f78 is described below
commit 7f9311f78ce364797fe0df23fc2c635eed001a31
Author: Jason Zhou <[email protected]>
AuthorDate: Wed Jul 17 01:34:25 2024 -0400
[build] Use clang-14 for non ubuntu 16.04 targets in docker-build.sh.
As we migrate to ubuntu 22.04, clang-10 is no longer available via
apt-get install. As such, we will move to clang-14, which should allow
us to run the docker-build.sh file with OS equal to ubuntu:22.04.
This should allow coverity bot to compile and return to normal.
Review: https://reviews.apache.org/r/75091/
---
support/docker-build.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/support/docker-build.sh b/support/docker-build.sh
index a0757b98e..b68081a46 100755
--- a/support/docker-build.sh
+++ b/support/docker-build.sh
@@ -84,7 +84,7 @@ case $OS in
if [[ "$OS" = "ubuntu:16.04" ]]; then
CLANG_PKG=clang-3.5
else
- CLANG_PKG=clang-10
+ CLANG_PKG=clang-14
fi
else
CLANG_PKG=