forked from Automattic/simplenote-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
108 lines (91 loc) · 2.75 KB
/
build.gradle
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
maven { url 'https://maven.google.com' }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
}
}
def gitHash() {
try {
def code = new ByteArrayOutputStream()
exec {
commandLine 'git', 'rev-parse', '--verify', '--short', 'HEAD'
standardOutput = code
}
return code.toString().trim()
}
catch (ignored) {
return "<unknown>"
}
}
def gitDescribe(){
try {
def code = new ByteArrayOutputStream()
exec {
commandLine 'git', 'describe', '--always', '--dirty=-dirty'
standardOutput = code
}
return code.toString().trim()
}
catch (ignored) {
return "<unknown>"
}
}
def gitVersion() {
(gitDescribe() =~ /^v/).replaceFirst('')
}
// Onboarding and dev env setup tasks
task checkBundler(type:Exec) {
doFirst {
println "Check Bundler"
}
workingDir = './'
executable "sh"
args "-c", "if ! type 'bundle' > /dev/null; then gem install bundler; fi"
//store the output instead of printing to the console:
standardOutput = new ByteArrayOutputStream()
//extension method checkBundler.output() can be used to obtain the output:
ext.output = {
return standardOutput.toString()
}
}
task checkBundle(type:Exec, dependsOn:checkBundler) {
doFirst {
println "Check Bundle"
}
workingDir = './'
executable "sh"
args "-c", "bundle check --path=\${BUNDLE_PATH:-vendor/bundle} > /dev/null || bundle install --jobs=3 --retry=3 --path=\${BUNDLE_PATH:-vendor/bundle}"
//store the output instead of printing to the console:
standardOutput = new ByteArrayOutputStream()
//extension method checkBundle.output() can be used to obtain the output:
ext.output = {
return standardOutput.toString()
}
}
task applyCredentials(type:Exec, dependsOn:checkBundle) {
doFirst {
println "Apply credentials for this branch"
}
workingDir = './'
executable "sh"
args "-c", "FASTLANE_SKIP_UPDATE_CHECK=1 FASTLANE_ENV_PRINTER=1 bundle exec fastlane run configure_apply force:true"
//store the output instead of printing to the console:
standardOutput = new ByteArrayOutputStream()
//extension method checkBundle.output() can be used to obtain the output:
ext.output = {
return standardOutput.toString()
}
}
tasks.register("configureApply") {
group = 'Onboarding'
description = 'Install dependencies for debug and production builds'
dependsOn applyCredentials
doLast {
println("Done")
}
}