1
0
mirror of https://github.com/square/okhttp.git synced 2026-01-14 07:22:20 +03:00

Run a minimal circleci maven build on 3.14 branch (#4912)

Minimal build to clear errors on branch PRs
This commit is contained in:
Yuri Schimke
2019-04-09 06:55:45 +01:00
committed by GitHub
parent 7f9d7801e1
commit df95c77adf

20
.circleci/config.yml Normal file
View File

@@ -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