From 069052f7c77a91fd610f6f780cb67723d653f311 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Mon, 29 May 2017 17:13:40 -0700 Subject: [PATCH] Added configuration options for circleci. --- circle.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index ead84b6..d359fb1 100644 --- a/circle.yml +++ b/circle.yml @@ -1,3 +1,15 @@ +machine: + java: + version: oraclejdk8 + dependencies: override: - - chmod +x gradlew \ No newline at end of file + - chmod +x gradlew + +general: + artifacts: + - build/libs + +test: + post: + - cp -r build/reports/* $CIRCLE_TEST_REPORTS/ \ No newline at end of file