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 93a268dc9 [mesos-build] Install openjdk 11 on ubuntu 20.04.
93a268dc9 is described below
commit 93a268dc9783750bbd68561dce089b73871663f6
Author: Jason Zhou <[email protected]>
AuthorDate: Thu Jun 6 20:41:24 2024 -0400
[mesos-build] Install openjdk 11 on ubuntu 20.04.
Install openjdk 11 on ubuntu 20.04. Our reviewbot is running into issues
where their java 11 installation is missing javac and configure.ac cannot
run properly, this fixes that issue.
Review: https://reviews.apache.org/r/75032/
---
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 f1893e0b3..ce643c14a 100755
--- a/support/docker-build.sh
+++ b/support/docker-build.sh
@@ -104,7 +104,7 @@ case $OS in
;;
*20.04*)
echo "Install Ubuntu 20.04 LTS (Focal Fossa) specific packages"
- append_dockerfile "RUN apt-get install -y openjdk-8-jdk zlib1g-dev"
+ append_dockerfile "RUN apt-get install -y openjdk-11-jdk zlib1g-dev"
# Install ping required by OsTest.Which
append_dockerfile "RUN apt-get install -y iputils-ping"