summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorKulhanek <tomas.kulhanek@stfc.ac.uk>2019-01-24 16:37:12 +0000
committerKulhanek <tomas.kulhanek@stfc.ac.uk>2019-01-24 16:37:12 +0000
commit5b8410926219639b41039c7529c7038ee11fc1d5 (patch)
treec43f982438e813c3ab8b46628651edb37e31decf /build
parent2281cb319701d348384a6c00a1948209350c41ad (diff)
downloadregularization-5b8410926219639b41039c7529c7038ee11fc1d5.tar.gz
regularization-5b8410926219639b41039c7529c7038ee11fc1d5.tar.bz2
regularization-5b8410926219639b41039c7529c7038ee11fc1d5.tar.xz
regularization-5b8410926219639b41039c7529c7038ee11fc1d5.zip
UPDATE: documentation of build script
Diffstat (limited to 'build')
-rwxr-xr-xbuild/jenkins-build.sh24
1 files changed, 23 insertions, 1 deletions
diff --git a/build/jenkins-build.sh b/build/jenkins-build.sh
index 62b1ece..258afb5 100755
--- a/build/jenkins-build.sh
+++ b/build/jenkins-build.sh
@@ -1,5 +1,27 @@
#!/usr/bin/env bash
+# Copyright 2019 Tomas Kulhanek, see /LICENSE
+
+# Universal script to build CCPi module libraries
+#
+# These environment variables can be specified optionally
+# CIL_VERSION - version of this build, it will be used to label it within multiple places during build
+# CCPI_CONDA_TOKEN - token to upload binary builds to anaconda
+# - if CIL_VERSION is not expliticly defined, then version is determined from `git describe --tags` and puts also
+# the number of commits after this tag
+# - it detects the branch under which the CCPi is build, master is uploaded to anaconda channel, non-master branch not
+# - if the version is release (no number after _), anaconda upload is production
+# - if the version is not release (number of commits after last tag) then anaconda upload is labeled as 'dev'
+# - some commit can be explicitly tagged including '_' char and something after, then it is considered as 'dev' version
+#
+# This script builds a CCPI module based on configuration in relative path Wrappers/Python/conda-recipe
+# multiple files can be build (combination of python version and dependent libraries)
+# Arguments to this script is passed to `conda build`
+# e.g.
+# jenkins-build.sh -c ccpi -c conda-forge
+# is passed to subsequent conda build as following
+# conda build Wrappers/Python/conda-recipe -c ccpi -c conda-forge
+
if [[ -n ${CIL_VERSION} ]]
then
echo Using defined version: $CIL_VERSION
@@ -42,7 +64,7 @@ cat .git/HEAD
conda install -y conda-build
#cd CCPi-Regularisation-Toolkit # already there by jenkins
# need to call first build
-conda build Wrappers/Python/conda-recipe
+conda build Wrappers/Python/conda-recipe "$@"
# then need to call the same with --output
#- otherwise no build is done :-(, just fake file names are generated
export REG_FILES=`conda build Wrappers/Python/conda-recipe --output`