Azure DevOps Setup

Hi All, 

Hope you're doing well. 

I'm trying to setup automated CI/CD on Azure. 

VCS = GIT sits on Azure

Below are the steps we're trying to achieve:

  1. Comit/Push the exported zip from local to GIT repo(using IntelliJ IDE)

  2. once the objects are committed into the repo, Trigger pipeline to add/merge the updated objects into existing application objects

  3. Build the Application - Generate the package .zip

  4. Import into the target environment

Issue: 

When executing the addContents action getting the below error message, please help me to understand the error if I missed anything.

Error Message:

2022-07-07 00:25:03,353 - Missing git repository. Cloning automatically.
2022-07-07 00:25:03,353 - Cloning from <Repo URL> to <local_repor_path>
2022-07-07 00:25:04,954 - Local repo updated successfully
2022-07-07 00:25:05,162 - close() called when useCnt is already zero
2022-07-07 00:25:05,163 - There was an error completing the selected operation. Additional details will be logged.
2022-07-07 00:25:05,163 - Details of error:
java.nio.file.ProviderNotFoundException: Provider not found
at java.base/java.nio.file.FileSystems.newFileSystem(FileSystems.java:423)
at com.appiancorp.ps.automatedversioning.VCSAndBuildController.isPatchesFileInZip(VCSAndBuildController.java:184)
at com.appiancorp.ps.automatedversioning.VCSAndBuildController.addContents(VCSAndBuildController.java:70)
at com.appiancorp.ps.automatedversioning.AutomatedVersioningManager.main(AutomatedVersioningManager.java:154)
CMD CODE:
                bash version-application.sh -action addContents -vc_username $(repo_user) -vc_password $(repo_password) -application_path $(System.DefaultWorkingDirectory)/$(application_name)/AppianPackages -repo_url <repo url> -local_repo_path $(Build.SourcesDirectory)/app_package  -uuid <uuid>
Note: the above code executing from GIT repo.

  Discussion posts and replies are publicly visible