Jenkinsfile 563 B

1234567891011121314151617181920212223
  1. podTemplate(containers: [
  2. containerTemplate(
  3. name: 'jnlp',
  4. image: 'jenkins/inbound-agent:latest'
  5. )
  6. ]) {
  7. node(POD_LABEL) {
  8. stage('Get a Maven project') {
  9. container('jnlp') {
  10. stage('Say Hello') {
  11. sh '''
  12. echo "Hello! I am executing shell"
  13. '''
  14. },
  15. stage('Show me a version') {
  16. sh '''
  17. python --version
  18. '''
  19. }
  20. }
  21. }
  22. }
  23. }