Skip to content

Commit

Permalink
Adds circleci 2 build.
Browse files Browse the repository at this point in the history
  • Loading branch information
dehora committed Mar 28, 2019
1 parent 74b2e20 commit f373d69
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

version: 2

jobs:

build:

docker:
- image: circleci/openjdk:8-jdk-browsers

environment:
JVM_OPTS: -Xmx1G
TERM: dumb

steps:
- checkout

- restore_cache:
keys:
- gradle-repo-v1-{{ .Branch }}-{{ checksum "dependencies.lock" }}
- gradle-repo-v1-{{ .Branch }}-
- gradle-repo-v1-

- save_cache:
paths:
- ~/.gradle
key: gradle-repo-v1-{{ .Branch }}-{{ checksum "dependencies.lock" }}

- run: ./wgradle clean test

0 comments on commit f373d69

Please sign in to comment.