reflow-oven-control-sw/Jenkinsfile

22 lines
358 B
Plaintext
Raw Normal View History

2021-10-10 22:38:58 +02:00
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}