gCubeBuilder/examples/dummy

25 lines
510 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'
}
}
}
}