This is an automated email from the ASF dual-hosted git repository. gaurava pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/hadoop.git
The following commit(s) were added to refs/heads/trunk by this push: new 833725193f2 HADOOP-19487. Upgrade libopenssl to 3.1.1 for rsync on Windows (#7487) 833725193f2 is described below commit 833725193f2b7d08258de26c8585156a0822f25a Author: Gautham B A <gautham.bangal...@gmail.com> AuthorDate: Mon Mar 10 16:06:48 2025 +0530 HADOOP-19487. Upgrade libopenssl to 3.1.1 for rsync on Windows (#7487) * We're currently using libopenssl 3.1.0 which is needed for rsync 3.2.7 on Windows for the Yetus build validation. * However, libopenssl 3.1.0 is no longer available for download on the msys2 site. * This PR upgrades libopenssl to the next available version - 3.1.1 to mitigate this issue. --- dev-support/docker/Dockerfile_windows_10 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-support/docker/Dockerfile_windows_10 b/dev-support/docker/Dockerfile_windows_10 index 99eb54c7a36..d2731caf9dd 100644 --- a/dev-support/docker/Dockerfile_windows_10 +++ b/dev-support/docker/Dockerfile_windows_10 @@ -81,11 +81,11 @@ RUN powershell Invoke-WebRequest -Uri https://github.com/facebook/zstd/releases/ RUN powershell Expand-Archive -Path $Env:TEMP\zstd-v1.5.4-win64.zip -DestinationPath "C:\ZStd" RUN setx PATH "%PATH%;C:\ZStd" -# Install libopenssl 3.1.0 needed for rsync 3.2.7. -RUN powershell Invoke-WebRequest -Uri https://repo.msys2.org/msys/x86_64/libopenssl-3.1.0-2-x86_64.pkg.tar.zst -OutFile $Env:TEMP\libopenssl-3.1.0-2-x86_64.pkg.tar.zst -RUN powershell zstd -d $Env:TEMP\libopenssl-3.1.0-2-x86_64.pkg.tar.zst -o $Env:TEMP\libopenssl-3.1.0-2-x86_64.pkg.tar +# Install libopenssl 3.1.1 needed for rsync 3.2.7. +RUN powershell Invoke-WebRequest -Uri https://repo.msys2.org/msys/x86_64/libopenssl-3.1.1-1-x86_64.pkg.tar.zst -OutFile $Env:TEMP\libopenssl-3.1.1-1-x86_64.pkg.tar.zst +RUN powershell zstd -d $Env:TEMP\libopenssl-3.1.1-1-x86_64.pkg.tar.zst -o $Env:TEMP\libopenssl-3.1.1-1-x86_64.pkg.tar RUN powershell mkdir "C:\LibOpenSSL" -RUN powershell tar -xvf $Env:TEMP\libopenssl-3.1.0-2-x86_64.pkg.tar -C "C:\LibOpenSSL" +RUN powershell tar -xvf $Env:TEMP\libopenssl-3.1.1-1-x86_64.pkg.tar -C "C:\LibOpenSSL" # Install libxxhash 0.8.1 needed for rsync 3.2.7. RUN powershell Invoke-WebRequest -Uri https://repo.msys2.org/msys/x86_64/libxxhash-0.8.1-1-x86_64.pkg.tar.zst -OutFile $Env:TEMP\libxxhash-0.8.1-1-x86_64.pkg.tar.zst --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-commits-h...@hadoop.apache.org