Skip to content

Commit e3c231d

Browse files
committed
Squashed 'libs/login/' changes from 4896a91c7c..afcb169132
afcb169132 Merge pull request #9 from wordpress-mobile/circleci-updates dc431caf59 CircleCI: Add checkstyle and assembleDebug 5ce9b4797e Merge pull request #8 from wordpress-mobile/circleci f3cad76587 Removed Travis CI config db2d8db7bd Add CircleCI config git-subtree-dir: libs/login git-subtree-split: afcb1691325f4c013549468cc506526a73a3fc33
1 parent 1042a27 commit e3c231d

File tree

2 files changed

+44
-27
lines changed

2 files changed

+44
-27
lines changed

.circleci/config.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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

.travis.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)