diff --git a/Jenkinsfile b/Jenkinsfile index e6f7667..cd00337 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,7 +32,8 @@ $class: 'GitSCMSource', remote: libLazy.remote, credentialsId: libLazy.credentialsId - ]) + ]), + changelog: false, ) // Load Jenkins shared libraries to customize this project @@ -48,7 +49,8 @@ $class: 'GitSCMSource', remote: libCustom.remote, credentialsId: libCustom.credentialsId - ]) + ]), + changelog: false, ) // Define the remotes and the working and deploy branches @@ -214,7 +216,7 @@ post: { echo "Publishing package repos" sshagent(credentials: [env.DEPLOY_CRED]) { - sshDeploy(env.BUILD_DIR, "${env.DEPLOY_USER}@${env.DEPLOY_HOST_STST}", env.DEPLOY_DIR, 'rsync') + sshDeploy(env.BUILD_DIR, "${env.DEPLOY_USER}@${env.DEPLOY_HOST_STST}", env.DEPLOY_DIR, 'rsync', false, '-hrlpgolzciu') } archiveArtifacts(artifacts: "${env.BUILD_DIR}/**", allowEmptyArchive: false) }, @@ -231,8 +233,8 @@ }, run: { sshagent(credentials: [env.DEPLOY_CRED]) { - sshDeploy(env.BUILD_DIR, "${env.DEPLOY_USER}@${env.DEPLOY_HOST_ACC1}", env.DEPLOY_DIR, 'rsync') - sshDeploy(env.BUILD_DIR, "${env.DEPLOY_USER}@${env.DEPLOY_HOST_ACC2}", env.DEPLOY_DIR, 'rsync') + sshDeploy(env.BUILD_DIR, "${env.DEPLOY_USER}@${env.DEPLOY_HOST_ACC1}", env.DEPLOY_DIR, 'rsync', false, '-hrlpgolzciu') + sshDeploy(env.BUILD_DIR, "${env.DEPLOY_USER}@${env.DEPLOY_HOST_ACC2}", env.DEPLOY_DIR, 'rsync', false, '-hrlpgolzciu') } }, in: '*',