12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #!/bin/bash
- # Prerequistes
- # Environment variables:
- # BINTRAY_API_KEY - Working API key
- # BINTRAY_API_USER - Bintray username.
- # Run this from the repository root (required to get slic3r version)
- source $(dirname $0)/common/util.sh
- SLIC3R_VERSION=$(grep "VERSION" xs/src/libslic3r/libslic3r.h | awk -F\" '{print $2}')
- get_commit
- set_build_id
- set_branch
- set_pr_id
- if [ "$current_branch" == "master" ] && [ -z ${PR_ID} ]; then
- # If building master, goes in slic3r_dev or slic3r, depending on whether or not this is a tagged build
- if [ -z ${TAGGED+x} ]; then
- SLIC3R_PKG=slic3r_dev
- else
- SLIC3R_PKG=slic3r
- fi
- version=$SLIC3R_BUILD_ID
- else
- # If building a branch, put the package somewhere else.
- echo "Delploying pull request $PR_ID"
- SLIC3R_PKG=Slic3r_Branches
- version=${SLIC3R_BUILD_ID}-PR${PR_ID}
- fi
- file=$1
- echo "Deploying $file to $version on Bintray repo $SLIC3R_PKG..."
- API=${BINTRAY_API_KEY}
- USER=${BINTRAY_API_USER}
- echo "Creating version: $version"
- curl -s -X POST -d "{ \"name\": \"$version\", \"released\": \"ISO8601 $(date +%Y-%m-%d'T'%H:%M:%S)\", \"desc\": \"This version...\", \"github_release_notes_file\": \"RELEASE.txt\", \"github_use_tag_release_notes\": true, \"vcs_tag\": \"$version\" }" -u${USER}:${API} https://api.bintray.com/content/lordofhyphens/Slic3r/${SLIC3R_PKG}/versions
- echo "Publishing ${file} to ${version}..."
- curl -s -H "X-Bintray-Package: $SLIC3R_PKG" -H "X-Bintray-Version: $version" -H 'X-Bintray-Publish: 1' -H 'X-Bintray-Override: 1' -T $file -u${USER}:${API} https://api.bintray.com/content/lordofhyphens/Slic3r/$(basename $1)
- #curl -X POST -u${USER}:${API} https://api.bintray.com/content/lordofhyphens/Slic3r/${SLIC3R_PKG}/$version/publish
- # Wait 5s for the server to catch up
- #sleep 5
- #curl -H 'Content-Type: application/json' -X PUT -d "{ \"list_in_downloads\":true }" -u${USER}:${API} https://api.bintray.com/file_metadata/lordofhyphens/Slic3r/$(basename $1)
- exit 0
|