Skip to content

Commit

Permalink
Merge pull request konifar#33 from DroidKaigi/fix-test-on-master
Browse files Browse the repository at this point in the history
testRelease on master branch
  • Loading branch information
takahirom authored Dec 31, 2017
2 parents b0af76a + ce2e9a3 commit 8917aea
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@ jobs:
fi
- run:
name: Test
command: ./gradlew --stacktrace test${APP_BUILD_TYPE^}
command: |
if [ $CIRCLE_BRANCH = 'master' ]; then
./gradlew --stacktrace testRelease
else
./gradlew --stacktrace test${APP_BUILD_TYPE^}
fi
- run:
name: Build
command: |
Expand Down

0 comments on commit 8917aea

Please sign in to comment.