[go: nahoru, domu]

Skip to content

Commit

Permalink
Squashed 'libs/login/' changes from 4896a91c7c..afcb169132
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jtreanor committed Mar 7, 2019
1 parent 1042a27 commit 9195ced
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 27 deletions.
44 changes: 44 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
version: 2.1

orbs:
android: wordpress-mobile/android@0.0.22

commands:
copy-gradle-properties:
steps:
- run:
name: Setup gradle.properties
command: cp gradle.properties-example gradle.properties

jobs:
Lint:
executor:
name: android/default
api-version: "27"
steps:
- checkout
- copy-gradle-properties
- android/restore-gradle-cache
- run:
name: Lint & Checkstyle
command: ./gradlew --stacktrace lint checkstyle
- android/save-gradle-cache
- android/save-lint-results
Build:
executor:
name: android/default
api-version: "27"
steps:
- checkout
- copy-gradle-properties
- android/restore-gradle-cache
- run:
name: Build
command: ./gradlew --stacktrace assembleDebug assembleRelease
- android/save-gradle-cache

workflows:
WordPress-Login-Flow-Android:
jobs:
- Lint
- Build
27 changes: 0 additions & 27 deletions .travis.yml

This file was deleted.

0 comments on commit 9195ced

Please sign in to comment.