2020-09-22 18:33:22 +00:00
|
|
|
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:
|
2020-10-05 15:59:31 +00:00
|
|
|
- ./gradlew clean build shadowJar buildRpm buildDeb
|
2020-09-22 18:33:22 +00:00
|
|
|
- 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
|