Answer by IvanRublev for Echo off in Jenkins Console Output
Here is an example of how to write the sh parameter in Jenkinsfile with no output in a more secure way, as suggested in official documentation. The set +x does the main magic as has been written in...
View ArticleAnswer by schnatterer for Echo off in Jenkins Console Output
In your specific situation (using gradle and jenkins) you could also use a Password Parameter, using Gradle's pattern for environment variables (ORG_GRADLE_PROJECT_prop). Gradle will then set a...
View ArticleAnswer by Slav for Echo off in Jenkins Console Output
By default, Jenkins launches Execute Shell script with set -x. This causes all commands to be echoedYou can type set +x before any command to temporary override that behavior. Of course you will need...
View ArticleEcho off in Jenkins Console Output
I'm following guideline how to sign Android apk with Jenkins. I have parametrized Jenkins job with KSTOREPWD and KEYPWD. A part of Jenkins' job configuration (Build->Execute shell) is to take those...
View Article