admin 2 anni fa
parent
commit
af3b1f57c5
1 ha cambiato i file con 11 aggiunte e 0 eliminazioni
  1. 11 0
      Jenkinsfile

+ 11 - 0
Jenkinsfile

@ -0,0 +1,11 @@
1
pipeline {
2
  agent any
3
  stages {
4
    stage('error') {
5
      steps {
6
        echo 'Hello World'
7
      }
8
    }
9
10
  }
11
}