libcvrapi/bitbucket-pipelines.yml

19 lines
554 B
YAML
Raw Normal View History

image: openjdk:8
pipelines:
default:
2019-08-19 09:43:07 +00:00
- step: # define the build pipeline for the tag
caches:
- gradle
2019-08-19 09:43:07 +00:00
name: Build and Test
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