Olaf Bohlen
2020-11-12 06321f20d34def403fed743258886e66f751aa51
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
pipeline {
  options {
    timeout(time: 10, unit: 'MINUTES')
  }
  agent {
    node {
      label 'master'
    }
  }
 
  stages {
    stage('init stage') {
      steps {
        sh 'uname -a'
      }
    }
 
    stage('main') {
      steps {
        sh 'pwd'
      }
    }
  }
}