Initial commit
All checks were successful
dustin/jenkinskube/pipeline/head This commit looks good

This commit is contained in:
2022-07-25 16:07:58 -05:00
commit ca4ddf2958

17
ci/Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,17 @@
// 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'
}
}
}
}