forked from rockerhieu/emojicon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
33 lines (29 loc) · 723 Bytes
/
circle.yml
File metadata and controls
33 lines (29 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
machine:
environment:
ANDROID_HOME: /usr/local/android-sdk-linux
java:
version: oraclejdk7
dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter "tools,platform-tools"
- echo y | android update sdk --no-ui --all --filter "android-21,build-tools-21.1.2"
override:
- ./gradlew dependencies
test:
override:
- ./gradlew check
post:
- ls
- ls library
- ls library/build
- mkdir $CIRCLE_ARTIFACTS/lint
- mv library/build/outputs/lint-results* $CIRCLE_ARTIFACTS/lint
deployment:
staging:
branch: develop
commands:
- ./gradlew assemble uploadArchives
release:
branch: master
commands:
- ./gradlew assemble uploadArchives