From df95c77adfbf4f5ddd30bfc6a2bb684295d7d313 Mon Sep 17 00:00:00 2001 From: Yuri Schimke Date: Tue, 9 Apr 2019 06:55:45 +0100 Subject: [PATCH] Run a minimal circleci maven build on 3.14 branch (#4912) Minimal build to clear errors on branch PRs --- .circleci/config.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 000000000..17419cf11 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,20 @@ +version: 2 +jobs: + build: + docker: + - image: circleci/openjdk:8u171-jdk + steps: + - checkout + - restore_cache: + key: cache-okhttp_3.14.x + - run: mvn dependency:go-offline + - save_cache: + paths: + - ~/.m2 + key: cache-okhttp_3.14.x + - run: + name: "Pull Submodules" + command: | + git submodule init + git submodule update --remote + - run: mvn test