Skip to content

Commit

Permalink
Merge pull request #5252 from chaimaeouardani:master
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 683211751
  • Loading branch information
copybara-github committed Oct 7, 2024
2 parents a8ec6a9 + 160d48a commit 706ed21
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions perfkitbenchmarker/linux_packages/openjdk_msft.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# linux_packages/openjdk_msft.py


def AptInstall(vm):
"""
Installs Microsoft Build of OpenJDK on an Ubuntu-based VM.
Args:
vm: The VM instance where the OpenJDK should be installed.
"""
vm.RemoteCommand('ubuntu_release=$(lsb_release -rs)')

vm.RemoteCommand(
'wget https://packages.microsoft.com/config/ubuntu/${ubuntu_release}/packages-microsoft-prod.deb'
' -O packages-microsoft-prod.deb'
)
vm.RemoteCommand('sudo dpkg -i packages-microsoft-prod.deb')

vm.RemoteCommand('sudo apt-get install -y apt-transport-https')
vm.RemoteCommand('sudo apt-get update')
vm.RemoteCommand('sudo apt-get install -y msopenjdk-21')

vm.RemoteCommand('java -version')


def YumInstall(vm):
"""
Installs Microsoft Build of OpenJDK on a RHEL/CentOS-based VM.
Args:
vm: The VM instance where the OpenJDK should be installed.
"""
vm.RemoteCommand('sudo yum install -y wget')
vm.RemoteCommand(
'sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc'
)
vm.RemoteCommand(
'wget https://packages.microsoft.com/config/rhel/7/prod.repo -O'
' /etc/yum.repos.d/microsoft.repo'
)
vm.RemoteCommand('sudo yum update -y')

vm.RemoteCommand('sudo yum install -y msopenjdk-17')

vm.RemoteCommand('java -version')

0 comments on commit 706ed21

Please sign in to comment.