Olaf Bohlen
2020-11-12 5c9e96df8b25ff2c2b9677bcd6eba7fe5ee7e813
initial jenkinsfile
1 files added
25 ■■■■■ changed files
Jenkinsfile 25 ●●●●● patch | view | raw | blame | history
Jenkinsfile
New file
@@ -0,0 +1,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'
      }
    }
  }
}