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