1

I am trying to install Taurus and JMeter on Azure DevOps Pipeline with PowerShell/Command line script. Is there any way or command that I can use for running the JMeter In Azure DevOps Pipeline without using Extension?

Note: I don't want to use the extension provided by Azure, I want to download it through custom script.

Shubham
  • 43
  • 3

1 Answers1

0

First of all, are you sure you need Windows? I'm asking because:

  • For getting Taurus you need Python and pip
  • For JMeter you will need Java runtime
  • For installing Taurus on Windows you will additionally need Microsoft C++ Build Tools which have immense size and download/installation can take more than 30 minutes

So maybe it worth considering using Taurus docker image instead?


You have been given instructions regarding how to install JMeter already, they can be slightly adapted for downloading and installing Python and MSVS Build Tools

Dmitri T
  • 159,985
  • 5
  • 83
  • 133
  • Thanks For the response, The solution(https://stackoverflow.com/questions/69526104/how-to-download-and-install-jmeter-using-powershell-task-in-azure-devops/69526487#69526487) that you provided worked Locally. But my main goal is to use Taurus and Jmeter to run the .jmx file in Azure DevOps Pipeline. and I wanted to install these two without using the extension. I want to use any custom command that can be used for installing Taurus, JMeter, and running the .jmx file through the command. – Shubham Oct 14 '21 at 08:33