gCubeBuilder/examples/dummy

26 lines
516 B
Plaintext
Raw Normal View History

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'
}
}
}
2019-08-31 21:50:16 +02:00
}
}