All checks were successful
dustin/jenkinskube/pipeline/head This commit looks good
18 lines
271 B
Groovy
18 lines
271 B
Groovy
// vim: set sw=4 ts=4 sts=4 et :
|
|
pipeline {
|
|
agent {
|
|
kubernetes true
|
|
}
|
|
|
|
stages {
|
|
stage('Stage 1') {
|
|
steps {
|
|
sh 'env'
|
|
sh 'touch "${BUILD_ID}".txt'
|
|
sh 'ls'
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|