From 0fbcfca55099c218ed18e2d19deb014112acce04 Mon Sep 17 00:00:00 2001 From: Jean-Christophe LOSAPIO Date: Mon, 13 Nov 2017 16:11:34 +0100 Subject: [PATCH] Configure circle CI #1 --- .circleci/config.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..f6c9365 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,32 @@ +# +# Check https://circleci.com/docs/2.0/language-java/ for more details +# +version: 2 +jobs: + build: + docker: + # specify the version you desire here + - image: circleci/openjdk:8-jdk + + # Specify service dependencies here if necessary + # CircleCI maintains a library of pre-built images + # documented at https://circleci.com/docs/2.0/circleci-images/ + # - image: circleci/postgres:9.4 + + working_directory: ~/myapp + + environment: + # Customize the JVM maximum heap limit + MAVEN_OPTS: -Xmx3200m + + steps: + + - run: + name: Clone + command: git clone https://github.com/JCL38-ORANGE/cassandra-cf-service-boshrelease.git + + - run: + name: Build + working_directory: ~/myapp/cassandra-cf-service-boshrelease/src/cassandra-open-service-broker + command: mvn clean install +