Last active
March 18, 2024 00:25
-
-
Save Schadenfeude/ed1be42caa347c5bb905c98f4b1aa698 to your computer and use it in GitHub Desktop.
Example Jenkinsfile declarative pipeline for Android projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipeline { | |
agent { | |
// Run on a build agent where we have the Android SDK installed | |
label 'android' | |
} | |
environment { | |
// Fastlane Environment Variables | |
PATH = "$HOME/.fastlane/bin:" + | |
"$HOME/.rvm/gems/ruby-2.5.3/bin:" + | |
"$HOME/.rvm/gems/ruby-2.5.3@global/bin:" + | |
"$HOME/.rvm/rubies/ruby-2.5.3/bin:" + | |
"/usr/local/bin:" + | |
"$PATH" | |
LC_ALL = "en_US.UTF-8" | |
LANG = "en_US.UTF-8" | |
VERSION_NAME = "" | |
VERSION_SUFFIX = "" | |
APP_VERSION_NAME = "" | |
VERSION_CODE = "" | |
DROPBOX_FOLDER = "" | |
PROGUARD_ENABLED = "" | |
JIRA_PROJECT_KEY = "" | |
PROJECT_NAME = env.JOB_NAME.tokenize("/").first().replaceAll(" Android", "") | |
} | |
options { | |
// Stop the build early in case of compile or test failures | |
skipStagesAfterUnstable() | |
} | |
stages { | |
stage('Start Build') { | |
steps { | |
bitbucketStatusNotify(buildState: 'INPROGRESS') | |
} | |
} | |
stage('Copy Key Stores') { | |
steps { | |
script { | |
def projName = PROJECT_NAME.replaceAll(" ", "_").toLowerCase() | |
sh "cp ~/Documents/android-keystores/${projName}_release.jks ../" | |
sh "cp ~/Documents/android-keystores/${projName}_upload.jks ../" | |
sh "cp ~/Documents/android-keystores/debug.ks ../" | |
} | |
} | |
} | |
stage('Copy Local Properties') { | |
steps { | |
script { | |
def projName = PROJECT_NAME.replaceAll(" ", "_").toLowerCase() | |
sh "cp ~/Documents/${projName}/local.properties ." | |
} | |
} | |
} | |
stage('Setup Versions') { | |
steps { | |
script { | |
VERSION_NAME = sh( | |
script: './gradlew -q printVersionName', | |
returnStdout: true | |
).trim().tokenize().last() | |
VERSION_SUFFIX = sh( | |
script: './gradlew -q printVersionSuffix', | |
returnStdout: true | |
).trim().tokenize().last() | |
APP_VERSION_NAME = VERSION_NAME + VERSION_SUFFIX | |
VERSION_CODE = sh( | |
script: './gradlew -q printVersionCode', | |
returnStdout: true | |
).trim().tokenize().last() | |
JIRA_PROJECT_KEY = sh( | |
script: './gradlew -q printJiraProjectKey', | |
returnStdout: true | |
).trim().tokenize().last() | |
DROPBOX_FOLDER = "${PROJECT_NAME}/${VERSION_NAME}/${APP_VERSION_NAME}" | |
PROGUARD_ENABLED = sh( | |
script: './gradlew -q printProguardEnabled', | |
returnStdout: true | |
).trim().tokenize().last() | |
} | |
} | |
} | |
stage('Build App') { | |
steps { | |
// Clean and assemble APKs | |
sh './gradlew clean assembleDebug assembleRelease' | |
script { | |
if (env.BRANCH_NAME.startsWith("release")) { | |
sh './gradlew bundleUpload' | |
} | |
} | |
} | |
} | |
stage('Upload To Google Play Store') { | |
steps { | |
script { | |
if (env.BRANCH_NAME.startsWith("release")) { | |
// This Gradle task comes from the Publisher script: | |
sh './gradlew generateReleaseMessage uploadToPlayStore tagUploadBuildCommit' | |
def repo = scm.getUserRemoteConfigs()[0].getUrl().replaceAll("https://", "") | |
withCredentials([usernamePassword(credentialsId: 'Android', passwordVariable: 'GIT_PASSWORD', usernameVariable: 'GIT_USERNAME')]) { | |
def user = URLEncoder.encode(GIT_USERNAME, "UTF-8") | |
def pass = URLEncoder.encode(GIT_PASSWORD, "UTF-8") | |
repo = "https://${user}:${pass}@${repo}" | |
try { | |
sh(""" | |
set +x | |
git push ${repo} --tags | |
set -x | |
""".stripMargin().stripIndent()) | |
} catch (Exception e) { | |
echo e.printStackTrace() | |
} | |
} | |
} else { | |
echo 'Skipping \'Upload To Google Play Store\' stage since we\'re not on a release branch...' | |
} | |
} | |
} | |
} | |
stage('Archive Files') { | |
steps { | |
// Archive the APKs so that they can be downloaded from Jenkins | |
echo 'Archiving APKs...' | |
archiveArtifacts '**/*.apk' | |
script { | |
if (PROGUARD_ENABLED == "true") { | |
echo 'Archiving Mappings...' | |
archiveArtifacts '**/mapping.txt' | |
} | |
if (env.BRANCH_NAME.startsWith("release")) { | |
echo 'Archiving AABs...' | |
archiveArtifacts '**/*.aab' | |
} | |
} | |
} | |
} | |
stage('Upload to Dropbox') { | |
steps { | |
script { | |
if (env.BRANCH_NAME.startsWith("release")) { | |
dropbox configName: 'Dropbox Android', remoteDirectory: "${DROPBOX_FOLDER}", sourceFiles: '**/*.apk', flatten: true | |
} else { | |
echo 'Skipping \'Upload to Dropbox\' stage since we\'re not on a release branch...' | |
} | |
} | |
} | |
} | |
stage('Static Analysis') { | |
steps { | |
echo 'Static Analysis' | |
// Run Lint and analyse the results | |
sh './gradlew lintProductionRelease' | |
androidLint() | |
} | |
} | |
stage('Finished') { | |
steps { | |
echo 'Finished' | |
} | |
} | |
} | |
post { | |
success { | |
script { | |
bitbucketStatusNotify(buildState: 'SUCCESSFUL') | |
// Notify if the upload succeeded | |
if (env.BRANCH_NAME.startsWith("release")) { | |
def dropboxFolderLink = "https://www.dropbox.com/home/Android/${DROPBOX_FOLDER}" | |
dropboxFolderLink = dropboxFolderLink.replaceAll(" ", "%20") | |
currentBuild.displayName = "${currentBuild.displayName}-${APP_VERSION_NAME}-${VERSION_CODE}" | |
mail to: "${QA_MAILS}", | |
cc: "${MANAGMENT_MAILS}, ${DEV_MAILS}", | |
subject: "${PROJECT_NAME} Android - New Build ${APP_VERSION_NAME}", | |
body: """\ | |
${PROJECT_NAME} Android - Build ${APP_VERSION_NAME} is available for testing. | |
The build is uploaded in Google Play Store Internal Test track. | |
Also available in: | |
Dropbox at - ${dropboxFolderLink} | |
Jenkins at - ${env.BUILD_URL} | |
Resolved issues and tasks - https://jira.example.com/issues/?jql=project%20%3D%20${JIRA_PROJECT_KEY}%20AND%20fixVersion%20%3D%20${APP_VERSION_NAME} | |
--------------------------------- | |
This is an automatic message, please do not reply!\ | |
""".stripMargin().stripIndent() | |
} | |
} | |
} | |
failure { | |
script { | |
bitbucketStatusNotify(buildState: 'FAILED') | |
// Notify developer team of the failure | |
mail to: "${DEV_MAILS}", | |
subject: "${env.JOB_NAME} - Build ${APP_VERSION_NAME} #${env.BUILD_NUMBER} - FAILED!", | |
body: """\ | |
${env.JOB_NAME} - Build ${APP_VERSION_NAME} #${env.BUILD_NUMBER} - FAILED!: | |
Check it out at ${env.BUILD_URL} | |
--------------------------------- | |
This is an automatic message, please do not reply!\ | |
""".stripMargin().stripIndent() | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For some Gradle automation scripts for uploading to Artifactory or PlayStore checkout: https://bitbucket.org/wacompa/library-publisher-android/src/master/publisher/src/