From 5702be8a2f2de3bb22eea86c2c168b90fddd0448 Mon Sep 17 00:00:00 2001 From: Yuri Schimke Date: Sat, 11 May 2019 14:54:30 +0100 Subject: [PATCH] CircleCI config for 3.12 branch (#5034) --- .circleci/config.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 000000000..3ef36270a --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,13 @@ +version: 2 +jobs: + build: + docker: + - image: circleci/openjdk:8u171-jdk + steps: + - checkout + - run: + name: "Pull Submodules" + command: | + git submodule init + git submodule update --remote + - run: mvn test