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:
20
.circleci/config.yml
Normal file
20
.circleci/config.yml
Normal 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
|
||||
Reference in New Issue
Block a user