UiPath DevOps 스크립트
1.1
자동화를 패키징, 배포, 실행하고, 테스트를 실행하고, 자산을 관리하고, 자동화 프로젝트를 분석하세요.
유튜브 영상 라이브러리 최초 출시 당시 제작된 영상이므로 이후 추가된 기능은 포함되어 있지 않습니다.
점점 더 많은 고객이 uipath 플랫폼을 GitLab 및 Circle CI와 같은 다른 플랫폼에 통합하도록 요청하고 있으며 UiPath는 모든 플랫폼에 대한 기본 플러그인을 생성할 수 없습니다.
DevOps PowerShell 스크립트의 이 비공식 라이브러리는 고객이 공식 UiPath CLI와의 상호 작용을 촉진하여 CI/CD를 워크플로에 통합하고 자동화 및 테스트를 패키징, 배포 및 실행할 수 있도록 지원합니다.
스크립트 폴더의 스크립트 사본을 자신의 저장소에 다운로드하는 것이 좋습니다.
# Create scripts folder under C drive. (you can change the directory path )
New-Item - Path " C:\ " - ItemType " directory " - Name " scripts " ;
Invoke-WebRequest " https://github.com/UiPath-Services/UiPath-DevOps-Scripts/raw/main/scripts/UiPathPack.ps1 " - OutFile " C:\scripts\UiPathPack.ps1 " ;
Invoke-WebRequest " https://github.com/UiPath-Services/UiPath-DevOps-Scripts/raw/main/scripts/UiPathDeploy.ps1 " - OutFile " C:\scripts\UiPathDeploy.ps1 " ;
Invoke-WebRequest " https://github.com/UiPath-Services/UiPath-DevOps-Scripts/raw/main/scripts/UiPathJobRun.ps1 " - OutFile " C:\scripts\UiPathJobRun.ps1 " ;
Invoke-WebRequest " https://github.com/UiPath-Services/UiPath-DevOps-Scripts/raw/main/scripts/UiPathRunTest.ps1 " - OutFile " C:\scripts\UiPathRunTest.ps1 " ;
Invoke-WebRequest " https://github.com/UiPath-Services/UiPath-DevOps-Scripts/raw/main/scripts/UiPathManageAssets.ps1 " - OutFile " C:\scripts\UiPathManageAssets.ps1 " ;
Invoke-WebRequest " https://github.com/UiPath-Services/UiPath-DevOps-Scripts/raw/main/scripts/UiPathAnalyzeProject.ps1 " - OutFile " C:\scripts\UiPathAnalyzeProject.ps1 " ;
Invoke-WebRequest " https://github.com/UiPath-Services/UiPath-DevOps-Scripts/raw/main/scripts/UiPathCLIGeneric.ps1 " - OutFile " C:\scripts\UiPathCLIGeneric.ps1 " ;
5개의 사용 가능한 스크립트를 활용할 수 있습니다.
스크립트 | 설명 |
---|---|
UiPathPack | 하나 이상의 프로젝트를 패키지로 묶습니다. 자세한 문서를 보려면 이름을 클릭하세요. |
UiPath배포 | Orchestrator 인스턴스에 패키지를 배포하고 선택적으로 환경 세트에 게시합니다. 자세한 문서를 보려면 이름을 클릭하세요. |
UiPathJobRun | Orchestrator에서 작업을 트리거합니다. 자세한 문서를 보려면 이름을 클릭하세요. |
UiPathRun테스트 | 지정된 패키지를 테스트하거나 테스트 세트를 실행합니다. 자세한 문서를 보려면 이름을 클릭하세요. |
UiPath자산 관리 | uipath 조정자 자산을 관리합니다. |
UiPath분석프로젝트 | 프로젝트에서 워크플로 분석기 위반 사항을 확인하세요. |
UiPathCLI일반 | 이 스크립트는 uipcli.exe 작업 방법을 알고 있고 cli를 직접 호출하려는 사용자를 위해 설계되었습니다. 이 스크립트는 제공된 매개변수를 있는 그대로 uipcli.exe에 직접 전달합니다. |
CircleCI 샘플
GitLab 샘플
각 스크립트는 모든 출력을 자체 *.log
파일에 기록하고 경우에 따라 콘솔에 기록합니다.
The scripts will automatically download the UiPath.CLI during the runtime.