forked from jenkinsci/uipath-automation-package-plugin
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstage.test.yml
More file actions
122 lines (120 loc) · 7.14 KB
/
stage.test.yml
File metadata and controls
122 lines (120 loc) · 7.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
stages:
- stage: 'E2ETests'
displayName: 'Run E2E Tests'
dependsOn: 'Deploy'
condition: succeeded()
jobs:
- deployment: ApprovalGate
displayName: Approval for E2E tests
environment: TestApprovalEnv
strategy:
runOnce:
deploy:
steps:
- script: echo "Approval granted. Proceeding to tests."
- template: job.ci.test.template.yml
parameters:
configurations:
#### Solutions E2E tests ###
- jobName: 'SolutionUploadPackageAndDeploySuccess'
configurationName: 'JenkinsE2ETests/UiPathSolution/SolutionUploadPackageAndDeploySuccess'
- jobName: 'SolutionPackUploadAndDeploySuccess'
configurationName: 'JenkinsE2ETests/UiPathSolution/SolutionPackUploadAndDeploySuccess'
- jobName: 'SolutionPackWithCertificateSigning'
configurationName: 'JenkinsE2ETests/UiPathSolution/SolutionPackWithCertificateSigning'
#### CLIVersion E2E tests ###
- jobName: 'UiPathTasksExtractPrepackagedCLI'
configurationName: 'JenkinsE2ETests/CLIVersion/UiPathTasksExtractPrepackagedCLI'
- jobName: 'WindowsPrepackagedCLIPackWindowsProject'
configurationName: 'JenkinsE2ETests/CLIVersion/WindowsPrepackagedCLIPackWindowsProject'
#### OrchestratorAuth E2E tests ###
- jobName: 'UiPathTasksOrchestratorExternalApp'
configurationName: 'JenkinsE2ETests/OrchestratorAuth/UiPathTasksOrchestratorExternalApp'
- jobName: 'UiPathTasksOrchestratorMSIUnamePass'
configurationName: 'JenkinsE2ETests/OrchestratorAuth/UiPathTasksOrchestratorMSIUnamePass'
#### UiPathAssets E2E tests ###
- jobName: 'DeployAndDeleteAssets'
configurationName: 'JenkinsE2ETests/UiPathAssets/DeployAndDeleteAssets'
#### UiPathDeploy E2E tests ###
- jobName: 'DeployClassicFolderWithEnvironment'
configurationName: 'JenkinsE2ETests/UiPathDeploy/DeployClassicFolderWithEnvironment'
- jobName: 'DeployCreateProcess'
configurationName: 'JenkinsE2ETests/UiPathDeploy/DeployCreateProcess'
- jobName: 'DeployEntryPointPaths'
configurationName: 'JenkinsE2ETests/UiPathDeploy/DeployEntryPointPaths'
- jobName: 'IgnoreLibraryDeployConflict'
configurationName: 'JenkinsE2ETests/UiPathDeploy/IgnoreLibraryDeployConflict'
#### UiPathInstallPlatform E2E tests ###
- jobName: 'InstallPrePackagedCLI'
configurationName: 'JenkinsE2ETests/UiPathInstallPlatform/InstallPrePackagedCLI'
- jobName: 'InstallDownloadedCLI'
configurationName: 'JenkinsE2ETests/UiPathInstallPlatform/InstallDownloadedCLI'
- jobName: 'InstallLocalNuPkgCLI'
configurationName: 'JenkinsE2ETests/UiPathInstallPlatform/InstallLocalNuPkgCLI'
- jobName: 'SuccessiveInstallPlatforms'
configurationName: 'JenkinsE2ETests/UiPathInstallPlatform/SuccessiveInstallPlatforms'
- jobName: 'InstallLocalNuPkgCLINetToolFolderStructure'
configurationName: 'JenkinsE2ETests/UiPathInstallPlatform/InstallLocalNuPkgCLINetToolFolderStructure'
#### UiPathPack E2E tests ###
- jobName: 'PackGenerateVersionTypes'
configurationName: 'JenkinsE2ETests/UiPathPack/PackGenerateVersionTypes'
- jobName: 'PackOutputTypes'
configurationName: 'JenkinsE2ETests/UiPathPack/PackOutputTypes'
- jobName: 'PackRunWorkflowAnalysis'
configurationName: 'JenkinsE2ETests/UiPathPack/PackRunWorkflowAnalysis'
- jobName: 'PackSplitOutput'
configurationName: 'JenkinsE2ETests/UiPathPack/PackSplitOutput'
- jobName: 'PackWithOrchestratorDependencies'
configurationName: 'JenkinsE2ETests/UiPathPack/PackWithOrchestratorDependencies'
- jobName: 'PackWithRepositoryMetadata'
configurationName: 'JenkinsE2ETests/UiPathPack/PackWithRepositoryMetadata'
# This test clears uipath.activities.runtimegovernance, but since other tests might pack as well in parallel, assembly's folder is restored (opened STUD-78424)
# - jobName: 'PackShouldNotLookUpInBuiltInFeeds'
# configurationName: 'JenkinsE2ETests/UiPathPack/PackShouldNotLookUpInBuiltInFeeds'
- jobName: 'AnalyzeShouldUseGovernanceFile'
configurationName: 'JenkinsE2ETests/UiPathPack/AnalyzeShouldUseGovernanceFile'
- jobName: 'PackWithCertificateSigning'
configurationName: 'JenkinsE2ETests/UiPathPack/PackWithCertificateSigning'
#### UiPathRunJob E2E tests ###
- jobName: 'RunJobFailsWhenORJobFails'
configurationName: 'JenkinsE2ETests/UiPathRunJob/RunJobFailsWhenORJobFails'
- jobName: 'RunJobOnMultipleLicenseTypes'
configurationName: 'JenkinsE2ETests/UiPathRunJob/RunJobOnMultipleLicenseTypes'
- jobName: 'RunJobWaitForJobCompletion'
configurationName: 'JenkinsE2ETests/UiPathRunJob/RunJobWaitForJobCompletion'
- jobName: 'RunJobWithDifferentRunStrategies'
configurationName: 'JenkinsE2ETests/UiPathRunJob/RunJobWithDifferentRunStrategies'
- jobName: 'RunJobWithInputParameters'
configurationName: 'JenkinsE2ETests/UiPathRunJob/RunJobWithInputParameters'
- jobName: 'RunJobWithResultsPath'
configurationName: 'JenkinsE2ETests/UiPathRunJob/RunJobWithResultsPath'
- jobName: 'RunJobWithTimeout'
configurationName: 'JenkinsE2ETests/UiPathRunJob/RunJobWithTimeout'
#### UiPathTest E2E tests ###
- jobName: 'RunTestClassicFolderWithEnvironment'
configurationName: 'JenkinsE2ETests/UiPathTest/RunTestClassicFolderWithEnvironment'
- jobName: 'RunTestSetFromOrchestrator'
configurationName: 'JenkinsE2ETests/UiPathTest/RunTestSetFromOrchestrator'
- jobName: 'RunTestsFromProjectWithTestcases'
configurationName: 'JenkinsE2ETests/UiPathTest/RunTestsFromProjectWithTestcases'
- jobName: 'RunTestWithAttachRobotLogs'
configurationName: 'JenkinsE2ETests/UiPathTest/RunTestWithAttachRobotLogs'
- jobName: 'RunTestWithInputParameters'
configurationName: 'JenkinsE2ETests/UiPathTest/RunTestWithInputParameters'
- jobName: 'RunTestWithTimeout'
configurationName: 'JenkinsE2ETests/UiPathTest/RunTestWithTimeout'
- jobName: 'RunTransientTestPackagedWithRepositoryMetadata'
configurationName: 'JenkinsE2ETests/UiPathTest/RunTransientTestPackagedWithRepositoryMetadata'
- jobName: 'RunTestShouldNotLookUpInBuiltInFeeds'
configurationName: 'JenkinsE2ETests/UiPathTest/RunTestShouldNotLookUpInBuiltInFeeds'
- jobName: 'RunTestSetFromTestManager'
configurationName: 'JenkinsE2ETests/UiPathTest/RunTestSetFromTestManager'
#### JenkinsPipelineTypes E2E tests ###
# - jobName: 'FreestylePipeline'
# configurationName: 'JenkinsE2ETests/JenkinsPipelineTypes/FreestylePipeline'
- jobName: 'ScriptedPipeline'
configurationName: 'JenkinsE2ETests/JenkinsPipelineTypes/ScriptedPipeline'
# Missing script from CI-Plugins-Tests
# - jobName: 'ScriptedPipelineServer'
# configurationName: 'JenkinsE2ETests/JenkinsPipelineTypes/ScriptedPipelineServer'
# dependsOnJob: 'ScriptedPipeline'