Skip to content

Commit

Permalink
Boost headers now needed for nightly build too
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Oct 16, 2023
1 parent b246df8 commit ece6eda
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions support/setup_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ conda config --add channels conda-forge
if [ ${imp_branch} = "develop" ]; then
IMP_CONDA="imp-nightly"
else
if [ ${python_version} = "2.7" ]; then
IMP_CONDA="imp"
else
IMP_CONDA="imp libboost-devel"
fi
IMP_CONDA="imp"
fi

conda create --yes -q -n python${python_version} -c salilab python=${python_version} pip ${IMP_CONDA} gxx_linux-64 eigen cereal swig cmake numpy
if [ ${python_version} = "2.7" ]; then
BOOST=""
else
BOOST="libboost-devel"
fi
conda create --yes -q -n python${python_version} -c salilab python=${python_version} pip ${IMP_CONDA} ${BOOST} gxx_linux-64 eigen cereal swig cmake numpy
eval "$(conda shell.bash hook)"
conda activate python${python_version}

Expand Down

0 comments on commit ece6eda

Please sign in to comment.