mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[FTSR] Add pluginFunctional to test suites (#102113)
This commit is contained in:
parent
8f5dad98a1
commit
df89ecee1b
1 changed files with 2 additions and 1 deletions
|
@ -4,7 +4,6 @@ library 'kibana-pipeline-library'
|
|||
kibanaLibrary.load()
|
||||
|
||||
def TASK_PARAM = params.TASK ?: params.CI_GROUP
|
||||
|
||||
// Looks like 'oss:ciGroup:1', 'oss:firefoxSmoke'
|
||||
def JOB_PARTS = TASK_PARAM.split(':')
|
||||
def IS_XPACK = JOB_PARTS[0] == 'xpack'
|
||||
|
@ -111,6 +110,8 @@ def getWorkerFromParams(isXpack, job, ciGroup) {
|
|||
return kibanaPipeline.scriptTaskDocker('Jest Integration Tests', 'test/scripts/test/jest_integration.sh')
|
||||
} else if (job == 'apiIntegration') {
|
||||
return kibanaPipeline.scriptTask('API Integration Tests', 'test/scripts/test/api_integration.sh')
|
||||
} else if (job == 'pluginFunctional') {
|
||||
return kibanaPipeline.functionalTestProcess('oss-pluginFunctional', './test/scripts/jenkins_plugin_functional.sh')
|
||||
} else {
|
||||
return kibanaPipeline.ossCiGroupProcess(ciGroup)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue