From 03ef814a72c3a09b630eec1e6d343610f990f601 Mon Sep 17 00:00:00 2001 From: Marco Poletti Date: Sat, 15 Sep 2018 12:31:43 +0100 Subject: Add a script to deploy Fruit as a Conan package to Bintray. --- extras/packaging/deploy_to_bintray.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 extras/packaging/deploy_to_bintray.sh (limited to 'extras') diff --git a/extras/packaging/deploy_to_bintray.sh b/extras/packaging/deploy_to_bintray.sh new file mode 100644 index 0000000..31a80c7 --- /dev/null +++ b/extras/packaging/deploy_to_bintray.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +FRUIT_VERSION=3.4.0 + +# To authenticate: +# conan user -p -r fruit-bintray polettimarco + +for build_type in Release Debug +do + for is_shared in True False + do + for use_boost in True False + do + conan create . google/stable -o fruit:shared=$is_shared -o fruit:use_boost=$use_boost -s build_type=$build_type + done + done +done + +conan remote update fruit-bintray https://api.bintray.com/conan/google/fruit +conan upload fruit/${FRUIT_VERSION}@google/stable --all -r fruit-bintray -- cgit v1.2.3