BuyAndKnow/Jenkinsfile

19 lines
299 B
Plaintext
Raw Normal View History

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