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'
|
2019-11-25 14:13:34 +01:00
|
|
|
sh 'ls /usr/share/tesseract-ocr/4.00/tessdata/'
|
|
|
|
sh 'python main.py -i img/biedra.jpg'
|
2019-11-18 18:37:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Test') {
|
|
|
|
steps {
|
|
|
|
echo 'Testing..'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|