Skip to content

Commit 1d85d27

Browse files
authored
Merge pull request auth0#145 from auth0/add-circleci
Add CircleCI
2 parents 0a70f79 + d5846c0 commit 1d85d27

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

circle.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#
2+
# Build configuration for Circle CI
3+
#
4+
5+
machine:
6+
environment:
7+
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"'
8+
_JAVA_OPTIONS: "-Xms512m -Xmx1024m"
9+
java:
10+
version: oraclejdk7
11+
12+
dependencies:
13+
cache_directories:
14+
- ~/.gradle
15+
16+
test:
17+
override:
18+
- ./gradlew clean check jacocoTestReport --continue --console=plain
19+
post:
20+
- bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)