ai-real-estate-tool/Jenkinsfile
2025-06-22 18:02:09 -07:00

22 lines
322 B
Groovy
Executable file

pipeline
{
agent {dockerfile true}
stages
{
stage ('Build')
{
steps
{
echo 'running build'
}
}
stage ('Test')
{
steps
{
echo 'Running Test...'
}
}
}
}