reflow-oven-control-sw/Jenkinsfile

30 lines
484 B
Plaintext
Raw Normal View History

2021-10-10 22:38:58 +02:00
pipeline {
agent any
stages {
2021-10-10 22:49:53 +02:00
stage('Configure') {
steps {
echo 'Configuring Cmake...'
mdkir build
cd build
2021-10-10 22:56:00 +02:00
cmake "../stm-firmware"
2021-10-10 22:54:47 +02:00
}
2021-10-10 22:49:53 +02:00
}
stage('Build') {
2021-10-10 22:38:58 +02:00
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}