23 lines
446 B
Groovy
23 lines
446 B
Groovy
pipeline {
|
|
agent {
|
|
docker { image 'python:3.10.6-slim-bullseye' }
|
|
}
|
|
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
echo 'Building..'
|
|
}
|
|
}
|
|
stage('Test') {
|
|
steps {
|
|
sh 'check_flat_price.py'
|
|
}
|
|
}
|
|
stage('Deploy') {
|
|
steps {
|
|
echo 'Deploying....'
|
|
}
|
|
}
|
|
}
|
|
} |