StreamingPluginClient/.circleci/config.yml

54 lines
1.5 KiB
YAML
Raw Normal View History

2018-09-15 12:45:47 +02:00
# Java Maven CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-java/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/openjdk:8-jdk
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/postgres:9.4
2018-09-15 12:41:02 +02:00
2018-09-15 12:45:47 +02:00
working_directory: ~/repo
2018-09-15 12:41:02 +02:00
2018-09-15 12:45:47 +02:00
environment:
# Customize the JVM maximum heap limit
MAVEN_OPTS: -Xmx3200m
steps:
- checkout
2018-09-15 12:41:02 +02:00
2018-09-15 12:45:47 +02:00
# Download and cache dependencies
2018-09-15 13:10:08 +02:00
- restore_cache:
2018-09-15 12:45:47 +02:00
keys:
- v1-dependencies-{{ checksum "pom.xml" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
2018-09-15 13:12:26 +02:00
- run:
2018-09-15 13:15:44 +02:00
command: |
2018-09-15 13:12:26 +02:00
mvn dependency:go-offline
sudo apt-get install golang-go
2018-09-15 12:45:47 +02:00
- save_cache:
paths:
- ~/.m2
key: v1-dependencies-{{ checksum "pom.xml" }}
2018-09-15 13:15:44 +02:00
2018-09-15 13:09:04 +02:00
- run: mvn package -Dci-build=true
- deploy:
name: Deploy
command: |
2018-09-15 13:14:03 +02:00
mkdir ~/go
export GOPATH=~/go
go get github.com/tcnksm/ghr
2018-09-15 13:09:04 +02:00
ghr -t $GITHUB_TOKEN -u $CIRCLE_PROJECT_USERNAME -r $CIRCLE_PROJECT_REPONAME -prerelease -b 'Nightly release - Use caution!' `echo "v0.0.1-nightly-$(git rev-parse --short=7 HEAD)"` ci/
- store_artifacts:
path: ci/