Selaa lähdekoodia

Added Jenkinsfile

admin 2 vuotta sitten
vanhempi
commit
af3b1f57c5
1 muutettua tiedostoa jossa 11 lisäystä ja 0 poistoa
  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
}