File tree Expand file tree Collapse file tree 2 files changed +44
-27
lines changed Expand file tree Collapse file tree 2 files changed +44
-27
lines changed Original file line number Diff line number Diff line change 1+ version : 2.1
2+
3+ orbs :
4+ android : wordpress-mobile/android@0.0.22
5+
6+ commands :
7+ copy-gradle-properties :
8+ steps :
9+ - run :
10+ name : Setup gradle.properties
11+ command : cp gradle.properties-example gradle.properties
12+
13+ jobs :
14+ Lint :
15+ executor :
16+ name : android/default
17+ api-version : " 27"
18+ steps :
19+ - checkout
20+ - copy-gradle-properties
21+ - android/restore-gradle-cache
22+ - run :
23+ name : Lint & Checkstyle
24+ command : ./gradlew --stacktrace lint checkstyle
25+ - android/save-gradle-cache
26+ - android/save-lint-results
27+ Build :
28+ executor :
29+ name : android/default
30+ api-version : " 27"
31+ steps :
32+ - checkout
33+ - copy-gradle-properties
34+ - android/restore-gradle-cache
35+ - run :
36+ name : Build
37+ command : ./gradlew --stacktrace assembleDebug assembleRelease
38+ - android/save-gradle-cache
39+
40+ workflows :
41+ WordPress-Login-Flow-Android :
42+ jobs :
43+ - Lint
44+ - Build
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments