22 lines
322 B
Groovy
Executable file
22 lines
322 B
Groovy
Executable file
pipeline
|
|
{
|
|
agent {dockerfile true}
|
|
stages
|
|
{
|
|
stage ('Build')
|
|
{
|
|
steps
|
|
{
|
|
echo 'running build'
|
|
|
|
}
|
|
}
|
|
stage ('Test')
|
|
{
|
|
steps
|
|
{
|
|
echo 'Running Test...'
|
|
}
|
|
}
|
|
}
|
|
}
|