Disable .deb build for now.

This commit is contained in:
Mark Nellemann 2020-08-14 13:38:40 +02:00
parent 9853f27fdb
commit 0370635170
1 changed files with 1 additions and 6 deletions

View File

@ -16,11 +16,6 @@ pipelines:
- gradle
name: Build and Release
script:
- ./gradlew clean build shadowJar startShadowScripts
- ./gradlew buildDep
- ./gradlew buildRpm
- ls -l ${BITBUCKET_CLONE_DIR}/build/libs ${BITBUCKET_CLONE_DIR}/build/distributions
- curl --version
- ./gradlew clean build shadowJar startShadowScripts buildRpm
- 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
- 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
- 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