-
Notifications
You must be signed in to change notification settings - Fork 296
/
Jenkinsfile.screenshots
112 lines (100 loc) · 4.19 KB
/
Jenkinsfile.screenshots
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#!groovy
def useDebugLabelParameter(defaultLabel){
return env.DEBUG_LABEL?.trim() ? env.DEBUG_LABEL : defaultLabel
}
pipeline {
environment {
BRANCH_NAME = 'Marketing_Screenshots'
}
parameters {
booleanParam name: 'UPLOAD_SCREENSHOTS', defaultValue: false, description: 'When selected the created screenshots will be uploaded to google play alpha.'
}
agent {
dockerfile {
filename 'Dockerfile.jenkins'
// 'docker build' would normally copy the whole build-dir to the container, changing the
// docker build directory avoids that overhead
dir 'docker'
// Pass the uid and the gid of the current user (jenkins-user) to the Dockerfile, so a
// corresponding user can be added. This is needed to provide the jenkins user inside
// the container for the ssh-agent to work.
// Another way would be to simply map the passwd file, but would spoil additional information
// Also hand in the group id of kvm to allow using /dev/kvm.
additionalBuildArgs '--build-arg USER_ID=$(id -u) --build-arg GROUP_ID=$(id -g) --build-arg KVM_GROUP_ID=$(getent group kvm | cut -d: -f3)'
// Ensure that each executor has its own gradle cache to not affect other builds
// that run concurrently.
args '--device /dev/kvm:/dev/kvm -m=6.5G'
label useDebugLabelParameter('LimitedEmulator')
}
}
options {
timeout(time: 2, unit: 'HOURS')
timestamps()
buildDiscarder(logRotator(numToKeepStr: '30'))
}
triggers {
issueCommentTrigger('.*(test this please|please test this).*')
}
stages {
stage('Build Debug-APK') {
steps {
sh "./gradlew -Pindependent='#$env.BUILD_NUMBER $env.BRANCH_NAME' assembleDebug"
archiveArtifacts 'app/build/outputs/apk/debug/paintroid-debug*.apk'
plot csvFileName: 'dexcount.csv', csvSeries: [[displayTableFlag: false, exclusionValues: '', file: 'Paintroid/build/outputs/dexcount/*.csv', inclusionFlag: 'OFF', url: '']], group: 'APK Stats', numBuilds: '180', style: 'line', title: 'dexcount'
}
}
stage('Build Test-APK') {
steps {
sh "./gradlew -Pindependent='#$env.BUILD_NUMBER $env.BRANCH_NAME' assembleAndroidTest"
archiveArtifacts 'Paintroid/build/outputs/apk/androidTest/debug/*.apk'
plot csvFileName: 'dexcount.csv', csvSeries: [[displayTableFlag: false, exclusionValues: '', file: 'Paintroid/build/outputs/dexcount/*.csv', inclusionFlag: 'OFF', url: '']], group: 'APK Stats', numBuilds: '180', style: 'line', title: 'dexcount'
}
}
stage('Start emulator') {
steps {
sh './gradlew startEmulator'
}
}
stage('Take screenshots') {
steps {
sh "fastlane screengrab"
}
post {
success {
zip zipFile: 'metadata.zip', archive: false, dir: 'fastlane/metadata'
archiveArtifacts artifacts: 'metadata.zip', fingerprint: true
}
}
}
stage('Review') {
//agent none
options {
timeout(time: 6, unit: 'HOURS')
}
steps {
script {
env.APPROVE_DEPLOY = input message: 'User input required',
parameters: [choice(name: 'Deploy', choices: 'no\nyes',
description: 'Please review the Screenshots! Do you want to deploy this to Google Play?')]
}
}
}
stage('Upload screenshots to Google Play') {
when {
allOf {
environment name: 'UPLOAD_SCREENSHOTS', value: 'true'
environment name: 'APPROVE_DEPLOY', value: 'yes'
}
}
steps {
sh 'fastlane android upload_Screenshots_Paintroid'
}
}
}
post {
always {
// clean workspace
deleteDir()
}
}
}