Skip to content

Commit

Permalink
testing circle-ci build
Browse files Browse the repository at this point in the history
  • Loading branch information
Turini committed Aug 4, 2017
1 parent 06bf74e commit b9784f4
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,29 @@
version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8-jdk

working_directory: ~/repo

environment:
MAVEN_OPTS: -Xmx3200m

steps:
- checkout

- restore_cache:
keys:
- v1-dependencies-{{ checksum "pom.xml" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run: mvn dependency:go-offline

- save_cache:
paths:
- ~/.m2
key: v1-dependencies-{{ checksum "pom.xml" }}

# run tests!
- run: mvn test

0 comments on commit b9784f4

Please sign in to comment.