reflow-oven-control-sw/Jenkinsfile
2021-10-10 22:56:00 +02:00

30 lines
484 B
Groovy

pipeline {
agent any
stages {
stage('Configure') {
steps {
echo 'Configuring Cmake...'
mdkir build
cd build
cmake "../stm-firmware"
}
}
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}