summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2022-10-02 12:42:18 +0300
committerAndrew Dolgov <[email protected]>2022-10-02 12:42:18 +0300
commitfcea6ca90141ea6e0604643f877ec42e0bd50015 (patch)
tree98607f721fd214391b80d16b8e1fe620d75c2db3
parentedb207784837229bceb540358f4cf8fb6298b7a1 (diff)
add Jenkinsfile
-rw-r--r--Jenkinsfile54
1 files changed, 54 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..dd8f6fb
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,54 @@
+pipeline {
+ agent any
+
+ environment {
+ deploy_key = "srv.tt-rss.org"
+ deploy_host = "tt-rss.fakecake.org"
+ }
+
+ stages {
+ stage('build') {
+ steps {
+ withCredentials([string(credentialsId: 'fdroid.jks', variable: 'FDROID_PASSWORD')]) {
+ sh("bash ./gradlew assembleFdroid " +
+ "-PFDROID_STORE_FILE=/var/jenkins_home/android-jks/fdroid.jks " +
+ "-PFDROID_STORE_PASSWORD=$FDROID_PASSWORD " +
+ "-PFDROID_KEY_ALIAS=fdroid " +
+ "-PFDROID_KEY_PASSWORD=$FDROID_PASSWORD")
+ }
+ }
+ }
+ stage('archive') {
+ steps {
+ archiveArtifacts '**/*.apk'
+ }
+ }
+ stage('deploy') {
+ when {
+ branch 'master'
+ }
+ steps {
+ sshagent(credentials: ["${deploy_key}"]) {
+ script {
+ def files = findFiles(glob: '**/*.apk')
+
+ for (String file : files) {
+ sh("scp -oStrictHostKeyChecking=no ${file} ${deploy_host}:fdroid/repo/")
+ }
+
+ sh("ssh -oStrictHostKeyChecking=no ${deploy_host} sudo /usr/local/sbin/fdroid-update-repo")
+ }
+ }
+ }
+ }
+ }
+ post {
+ failure {
+ mail body: "Project: ${env.JOB_NAME} <br>Build Number: ${env.BUILD_NUMBER}<br> build URL: ${env.BUILD_URL}",
+ charset: 'UTF-8', from: '[email protected]',
+ mimeType: 'text/html',
+ subject: "Build failed: ${env.JOB_NAME}",
+ }
+ }
+}