How Junit configured in Jenkins through Jenkins Docker file

2/28/2019

Hi i am trying to configure Junit on Jenkins Kubernetes using script

stage('Build') {
            steps {
                sh './gradlew build'
            }
        }
        stage('Junit') {
            steps {
                sh './gradlew check'
            }
        }

But facing issue ./gradlew: not found can some one suggest how to achieve

-- stans
jenkins
kubernetes

0 Answers