blob: 6e35e4a61f6a066e66524c6f0932eeaebdae8d3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env bash
# Script to builds source code in Jenkins environment
module avail
module load conda
# it expects that git clone is done before this script launch
# git clone https://github.com/vais-ral/CCPi-Regularisation-Toolkit
conda install -y conda-build
#export CIL_VERSION=0.10.2
export CIL_VERSION=0.10.2
#cd CCPi-Regularisation-Toolkit # already there by jenkins
conda build --debug Wrappers/Python/conda-recipe
|