Skip to content
This repository has been archived by the owner on Sep 17, 2022. It is now read-only.

Commit

Permalink
Add CircleCI (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
egor-n committed Oct 14, 2018
1 parent f1ccdd8 commit 17fae27
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,28 @@
version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8-jdk

working_directory: ~/fabric-beta-publisher-plugin

environment:
MAVEN_OPTS: -Xmx3200m

steps:
- checkout

- restore_cache:
keys:
- v1-dependencies-{{ checksum "pom.xml" }}
- v1-dependencies-

- run: mvn clean install findbugs:check -e

- save_cache:
paths:
- ~/.m2
key: v1-dependencies-{{ checksum "pom.xml" }}

- store_artifacts:
path: target/fabric-beta-publisher.hpi

0 comments on commit 17fae27

Please sign in to comment.