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