2019-08-19 08:12:22 +00:00
|
|
|
image: openjdk:8
|
|
|
|
|
|
|
|
pipelines:
|
|
|
|
default:
|
2019-08-19 09:43:07 +00:00
|
|
|
- step: # define the build pipeline for the tag
|
2019-08-19 08:12:22 +00:00
|
|
|
caches:
|
|
|
|
- gradle
|
2019-08-19 09:43:07 +00:00
|
|
|
name: Build and Test
|
2019-08-19 08:12:22 +00:00
|
|
|
script:
|
2019-08-19 09:43:07 +00:00
|
|
|
- bash ./gradlew clean build
|
|
|
|
tags: # add the 'tags' section
|
|
|
|
release-*: # specify the tag
|
|
|
|
- step: # define the build pipeline for the tag
|
|
|
|
caches:
|
|
|
|
- gradle
|
|
|
|
name: Build and Release
|
|
|
|
script:
|
|
|
|
- bash ./gradlew clean build bintrayUpload
|