1234567891011121314151617181920212223 |
- podTemplate(containers: [
- containerTemplate(
- name: 'jnlp',
- image: 'jenkins/inbound-agent:latest'
- )
- ]) {
- node(POD_LABEL) {
- stage('Get a Maven project') {
- container('jnlp') {
- stage('Say Hello') {
- sh '''
- echo "Hello! I am executing shell"
- '''
- },
- stage('Show me a version') {
- sh '''
- python --version
- '''
- }
- }
- }
- }
- }
|