0

I would like to test that a command I'm crafting will work fine on a Hosted Agent with my DevOps Build Pipeline. The command could be quite complex or as trivial as tsc --version, for example.

How do I do it without modifying my build-pipeline-definition.yaml or rerunning the Build Pipeline?

Can I ssh/remote into the Agent and play around there? Or is there another way?

Daniel Mann
  • 57,011
  • 13
  • 100
  • 120
Igor Soloydenko
  • 11,067
  • 11
  • 47
  • 90

1 Answers1

3

How do I do it without modifying my build-pipeline-definition.yaml or rerunning the Build Pipeline?

At the moment, you don't. The way to test builds is to modify the build, run a build, and iterate if it's still not working.

Can I ssh/remote into the Agent and play around there?

No. If you need access to an agent, install and configure a private agent on a machine you control.

Daniel Mann
  • 57,011
  • 13
  • 100
  • 120