ADO CICD JOB need to execute from UIPath Orchestrator

Hi All,

We develop Azure Build & Release pipeline, which are connected with orchestrator. Unfortunately, we are not able to execute job from orchestrator.

UiPath Test package is running in endless loop.
UiPath Run Job task facing “Starting jobs for Test Automation processes is not supported through the standard jobs APIs” error.

Facing issue in code:

  • task: UiPathTest@4
    inputs:
    testTarget: ‘TestProject’
    orchestratorConnection: ‘UiPath Test Pipeline Connection’
    folderName: ‘Shared’

Any suggestion.

@Kaushal_Maru2
The error you’re encountering, “Starting jobs for Test Automation processes is not supported through the standard jobs APIs,” suggests that you might be trying to start a job for a process that is marked as a Test Automation process in UiPath Orchestrator. Test Automation processes cannot be executed through the standard job APIs.

  1. Check Test Automation Process Settings:
  • Ensure the process you’re trying to run in Orchestrator is not marked as a Test Automation process, as they have specific limitations.
  1. Use the Start Job Activity:
  • If you’re using Orchestrator API, consider using the UiPath.Orchestrator.Activities.StartJob activity in your UiPath workflow to start jobs instead of standard job APIs.
  1. Update Pipeline Configuration:
  • Verify that Azure DevOps pipeline parameters like testTarget, orchestratorConnection, and folderName match your Orchestrator setup.
  1. Check UiPath Orchestrator API Version:
  • Confirm you are using a UiPath Orchestrator API version that supports the features you are trying to use.
  1. Review Orchestrator Logs:
  • Examine Orchestrator logs for more details on why the Test Automation process is not starting.

Thanks for Reply.

Can we execute job from ADO only. Also let me know is current UiPath setup is work for testcases also or only use cases.