TakeCareApp/Jenkinsfile

24 lines
425 B
Plaintext
Raw Normal View History

2020-11-23 00:45:26 +01:00
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
2020-11-24 00:47:52 +01:00
bat 'make'
2020-11-23 00:45:26 +01:00
}
}
stage('Test') {
steps {
echo 'Testing..'
2020-11-24 00:47:52 +01:00
bat 'make check || true'
2020-11-23 00:45:26 +01:00
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
2020-11-23 12:08:36 +01:00
}