[go: nahoru, domu]

Skip to content

Commit

Permalink
Squashed 'libs/utils/' changes from 26117fc8f8..4c6e8c9234
Browse files Browse the repository at this point in the history
4c6e8c9234 Merge pull request #21 from wordpress-mobile/circleci-updates
8470873567 CircleCI: Add checkstyle and assembleDebug
0b5781dd43 Merge pull request #20 from wordpress-mobile/circleci
8514b7f1cc Removed Travis CI config
0350b9e876 Add CircleCI config

git-subtree-dir: libs/utils
git-subtree-split: 4c6e8c92344cd799619efab5df7500ec782c0f42
  • Loading branch information
jtreanor committed Mar 7, 2019
1 parent 9fbcc7f commit 5f5d124
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 21 deletions.
35 changes: 35 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
version: 2.1

orbs:
android: wordpress-mobile/android@0.0.22

jobs:
Lint:
executor:
name: android/default
api-version: "27"
steps:
- checkout
- 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
- android/restore-gradle-cache
- run:
name: Build
command: ./gradlew --stacktrace assembleDebug assembleRelease
- android/save-gradle-cache

workflows:
WordPress-Utils-Android:
jobs:
- Lint
- Build
21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

0 comments on commit 5f5d124

Please sign in to comment.