Implement CICD Pipeline for Uipath Project Using Azure DevOps Pipelines

Hi @Kevin_Westerman_Tacstone ,

No, didn’t connect…Have messaged him.Let’s see

Regards,
Geetishree Rao

@gRao sure let me know when we can connect and sort out this issue.

Hi @BalaManikanta_007 ,

Tomorrow at 12 noon or ur time ,let me know…I have sent a message to you…

Thanks

I managed to fix the issue by updating the pipeline process in the pipeline folder made by orchestrator. After that you still need to fill in the test tennant or test folder in the pipeline settings.

Hi @Kevin_Westerman_Tacstone ,

Didn’t get you.Could you elaborate on the fix you tried.
I am able to pack and build but the test and deploy fails.
After creating a release pipeline to deploy,I tried making changes to the code to trigger the pipeline so that the new version gets pub;ished in the Orch folder,but it fails at deploy.

Starter pipeline

Start with a minimal pipeline that you can customize to build and deploy your code.

Add steps that build, run tests, deploy, and more:

YAML schema reference | Microsoft Learn

trigger:

  • main

pool:
vmImage: windows-latest

steps:

  • task: UseDotNet@2
    inputs:
    packageType: ‘sdk’
    version: ‘6.0.302’

  • task: UiPathPack@4
    inputs:
    versionType: ‘AutoVersion’
    projectJsonPath: ‘$(Build.SourcesDirectory)’
    orchestratorConnection: ‘CICDNewGIGConn’
    outputPath: ‘$(Build.ArtifactStagingDirectory)\Output’

  • task: PublishBuildArtifacts@1
    inputs:
    PathtoPublish: ‘$(Build.ArtifactStagingDirectory)’
    ArtifactName: ‘drop’
    publishLocation: ‘Container’

And other thing I saw, every time I try to commit a change,the repository is not matching and need to rebase/pull.

Thanks,
Geetishree

@gRao Can we have a one more call tomorrow or day of tomorrow to sort of all your issues.

Hi @BalaManikanta_007 . …Sure…Will touch base tomorrow…Thanks

@BalaManikanta_007 did you finally resolve this issue

![I notice this warning in Release Pipeline. I can deploy the package but with this warning. (upload://XEDM7HcrmT6VRJ6E8B076JIEP9.png)
Warning :
Task ‘UiPath Deploy’ version 2 (UiPathDeploy@2) is dependent on a Node version (10) that is end-of-life. Contact the extension owner for an updated version of the task. Task maintainers should review Node upgrade guidance: Add a build or release task in an extension - Azure DevOps | Microsoft Learn

We can also implement the Azure DevOps Pipeline without using the UiPath extension. So, it will not depend on node 10, Kindly try to create a PowerShell script using UiPath CLI commands.