This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
jenkinskube/ci/Jenkinsfile

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