24 lines
1.4 KiB
YAML
24 lines
1.4 KiB
YAML
|
image: adoptopenjdk:8-openj9
|
||
|
#image: openjdk:8
|
||
|
|
||
|
pipelines:
|
||
|
branches:
|
||
|
master:
|
||
|
- step:
|
||
|
caches:
|
||
|
- gradle
|
||
|
name: Build and Test
|
||
|
script:
|
||
|
- ./gradlew clean build
|
||
|
tags: # add the 'tags' section
|
||
|
v*: # specify the tag
|
||
|
- step: # define the build pipeline for the tag
|
||
|
caches:
|
||
|
- gradle
|
||
|
name: Build and Release
|
||
|
script:
|
||
|
- ./gradlew clean build shadowJar startShadowScripts buildRpm buildDeb
|
||
|
- shopt -s nullglob ; for file in ${BITBUCKET_CLONE_DIR}/build/libs/*-all.jar ; do curl -X POST --user "${BB_AUTH_STRING}" "https://api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/downloads" --form files=@"${file}" ; done
|
||
|
- shopt -s nullglob ; for file in ${BITBUCKET_CLONE_DIR}/build/distributions/*.rpm ; do curl -X POST --user "${BB_AUTH_STRING}" "https://api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/downloads" --form files=@"${file}" ; done
|
||
|
- shopt -s nullglob ; for file in ${BITBUCKET_CLONE_DIR}/build/distributions/*.deb ; do curl -X POST --user "${BB_AUTH_STRING}" "https://api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/downloads" --form files=@"${file}" ; done
|