Add dummy pipeline for testing purposes.
This commit is contained in:
parent
0e63817065
commit
4dac7e36c8
|
@ -0,0 +1,25 @@
|
|||
pipeline {
|
||||
agent any
|
||||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
script {
|
||||
parallel echo 'Building'
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Test') {
|
||||
steps {
|
||||
script {
|
||||
parallel echo 'Testing'
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Deploy') {
|
||||
steps {
|
||||
script {
|
||||
parallel echo 'Deploying'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
def apps = "SmartGears,Enabling,Data".split(",").findAll { it }.collect { it.trim() }
|
||||
def jobs = "maven-parent,gcube-bom,job3,job4,job5".split(",").findAll { it }.collect { it.trim() }
|
||||
def jobs = "maven-parent,gcube-bom".split(",").findAll { it }.collect { it.trim() }
|
||||
|
||||
def environment = env.ENVIRONMENT
|
||||
def version = env.VERSION
|
||||
|
|
Loading…
Reference in New Issue