diff --git a/Jenkinsfile b/Jenkinsfile index 7dbb0f3..7985e2a 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 @@ -90,7 +92,7 @@ sh("git checkout ${lazyConfig['branch']}") }, run: { - fastLane('android', 'test', '', 'rh-ruby24') + fastLane('android', 'test', '', 'rh-ruby26') }, args: "-v /opt/android:/opt/android" + " -e JAVA_HOME=${env.JAVA_HOME}" @@ -109,7 +111,7 @@ currentBuild.displayName = "#${env.BUILD_NUMBER} ${currentVersion.string}-${currentVersion.number}" }, run: { - fastLane('android', 'build', '', 'rh-ruby24') + fastLane('android', 'build', '', 'rh-ruby26') }, args: "-v /opt/android:/opt/android" + " -v /opt/certificates:/opt/certificates"