Jeff Baskin
389624b762
All checks were successful
MoreThanText/testing/pipeline/head This commit looks good
11 lines
118 B
Groovy
11 lines
118 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Example') {
|
|
steps {
|
|
echo 'hello world'
|
|
}
|
|
}
|
|
}
|
|
}
|