From 0b7837d929c639765f10d3acc3e0b709563128b9 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Sun, 29 Oct 2017 22:40:09 -0700 Subject: [PATCH] Added CircleCI 2.0 configuration. --- .circleci/config.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..279d5a2 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,25 @@ +version: 2 +jobs: + build: + docker: + - image: circleci/openjdk:8-jdk + + working_directory: ~/repo + + environment: + JVM_OPTS: -Xmx3200m + TERM: dumb + + steps: + - checkout + - restore_cache: + keys: + - kobalt-dependencies-{{ checksum "kobalt/src/Build.kt" }} + # fallback to using the latest cache if no exact match is found + - kobalt-dependencies- + - run: + name: Assemble + command: ./kobaltw assemble + - save_cache: + paths: ~/.kobalt + key: gradle-dependencies-{{ checksum "kobalt/src/Build.kt" }} \ No newline at end of file