njamentatiana / jenkinsfile

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pipeline { agent any

stages {
    stage('Hello') {
        steps {
            echo 'Hello World'
        }
    }
               steps {
            echo 'Hello World'
        }
    }
}

}

About