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 b8e4c8fa72
All checks were successful
dustin/jenkinskube/pipeline/head This commit looks good
Add more testing commands
2022-07-25 16:18:56 -05:00

24 lines
439 B
Groovy

// vim: set sw=4 ts=4 sts=4 et :
pipeline {
agent {
kubernetes {
yamlFile 'ci/podTemplate.yaml'
defaultContainer 'busybox'
}
}
stages {
stage('Stage 1') {
steps {
sh 'whoami'
sh 'env'
sh 'touch "${BUILD_ID}".txt'
sh 'ls /'
sh 'pwd'
sh 'ls'
}
}
}
}