BuyAndKnow/Jenkinsfile

17 lines
302 B
Plaintext
Raw Normal View History

2019-11-18 18:37:57 +01:00
pipeline {
2019-11-25 13:54:35 +01:00
agent { dockerfile true }
2019-11-25 13:51:22 +01:00
2019-11-18 18:37:57 +01:00
stages {
stage('Build') {
steps {
2019-11-25 13:59:01 +01:00
sh 'ls'
sh 'python api/main.py -i api/img/biedra.jpg'
2019-11-18 18:37:57 +01:00
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
}
}