This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
jenkinskube/ci/Jenkinsfile
Dustin C. Hatch ca4ddf2958
All checks were successful
dustin/jenkinskube/pipeline/head This commit looks good
Initial commit
2022-07-25 16:07:58 -05:00

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'
}
}
}
}