18 lines
354 B
Groovy
18 lines
354 B
Groovy
pipeline {
|
|
agent { dockerfile true }
|
|
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
echo 'Building..'
|
|
}
|
|
}
|
|
stage('Test') {
|
|
steps {
|
|
echo 'Testing..'
|
|
sh 'sh scripts/check_tesseract.sh'
|
|
sh 'python api/main.py -i api/img/biedra.jpg'
|
|
}
|
|
}
|
|
}
|
|
} |