reflow-oven-control-sw/Jenkinsfile

30 lines
488 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...'
2021-10-10 22:58:26 +02:00
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....'
}
}
}
}