1 Commits

Author SHA1 Message Date
c82ca7d8f0 Merge branch 'jenkins' into dev 2021-10-10 22:41:00 +02:00

18
Jenkinsfile vendored
View File

@@ -2,22 +2,9 @@ pipeline {
agent any
stages {
stage('Configure') {
steps {
echo 'Configuring Cmake...'
sh '''
mkdir "build" &&
cd "build" &&
cmake "../stm-firmware"
'''
}
}
stage('Build') {
steps {
sh '''
cd "build" &&
make
'''
echo 'Building..'
}
}
stage('Test') {
@@ -26,9 +13,8 @@ pipeline {
}
}
stage('Deploy') {
when { tag "*" }
steps {
echo 'Deploying tag...'
echo 'Deploying....'
}
}
}