BuyAndKnow/Jenkinsfile

20 lines
501 B
Plaintext
Raw Permalink 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 14:49:45 +01:00
echo 'Building..'
2019-11-18 18:37:57 +01:00
}
}
stage('Test') {
steps {
echo '> Test tesseract installation...'
2019-11-25 14:56:40 +01:00
sh 'sh scripts/check_tesseract.sh'
echo '> Test OCR api module...'
2019-12-08 23:10:57 +01:00
sh 'ls /usr/share/tesseract-ocr/4.00/tessdata'
sh 'python bk_api/ocr_module/main.py -i bk_api/ocr_module/img/biedra.jpg'
2019-11-18 18:37:57 +01:00
}
}
}
}