Skip to content
Snippets Groups Projects
Commit 2c84cff7 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Try to organize build scripts a bit more cleanly

parent a5600ef5
No related branches found
No related tags found
1 merge request!63Conda package based CI
#!/usr/bin/env bash
# Tue 16 Jan 11:15:32 2018 CET
source $(dirname ${0})/functions.sh
# checks if a conda installation exists. Otherwise, install one
if [ ! -e ${CONDA_FOLDER}/bin/conda ]; then
install_miniconda ${CONDA_FOLDER}
fi
# moves the cache to conda folder
mkdir -p ${CONDA_FOLDER}/pkgs
touch ${CONDA_FOLDER}/pkgs/urls
touch ${CONDA_FOLDER}/pkgs/urls.txt
merge_conda_cache ${CONDA_FOLDER}/pkgs ${CONDA_ENVS_PATH}/.pkgs
cat <<EOF > ${CONDARC}
default_channels:
- https://repo.continuum.io/pkgs/main
- https://repo.continuum.io/pkgs/free
- https://repo.continuum.io/pkgs/r
- https://repo.continuum.io/pkgs/pro
EOF
echo "Contents of \`${CONDARC}':"
cat ${CONDARC}
run_cmd ${CONDA_FOLDER}/bin/conda config --set add_pip_as_python_dependency false
run_cmd ${CONDA_FOLDER}/bin/conda config --set always_yes yes --set changeps1 no
run_cmd ${CONDA_FOLDER}/bin/conda config --set always_yes true
run_cmd ${CONDA_FOLDER}/bin/conda config --set show_channel_urls true
run_cmd ${CONDA_FOLDER}/bin/conda config --set anaconda_upload no
run_cmd ${CONDA_FOLDER}/bin/conda config --add channels ${CHANNEL_URL}
run_cmd ${CONDA_FOLDER}/bin/conda config --set ssl_verify false
run_cmd ${CONDA_FOLDER}/bin/conda install --quiet --yes -c defaults python conda=4.4 curl conda-build=3
# copies our central build configuration to the conda folder of the package
run_cmd cp _ci/conda_build_config.yaml conda/
# cleans up
run_cmd ${CONDA_FOLDER}/bin/conda clean --lock
# print conda information for debugging purposes
run_cmd ${CONDA_FOLDER}/bin/conda info
...@@ -3,22 +3,9 @@ ...@@ -3,22 +3,9 @@
source $(dirname ${0})/functions.sh source $(dirname ${0})/functions.sh
# Move the cache to conda folder # Makes sure we activate the base environment if available
if [ "${OSNAME}" == "linux" ]; then run_cmd source ${CONDA_FOLDER}/etc/profile.d/conda.sh
mkdir -p ${CONDA_FOLDER}/pkgs run_cmd conda activate base
touch ${CONDA_FOLDER}/pkgs/urls
touch ${CONDA_FOLDER}/pkgs/urls.txt
fi
merge_conda_cache ${CONDA_FOLDER}/pkgs ${CONDA_ENVS_PATH}/.pkgs
run_cmd ${CONDA_FOLDER}/bin/conda install --override-channels -c https://repo.continuum.io/pkgs/main -c https://repo.continuum.io/pkgs/free -c https://repo.continuum.io/pkgs/r -c https://repo.continuum.io/pkgs/pro -n root --yes --quiet conda=4.4 conda-build=3
run_cmd ${CONDA_FOLDER}/bin/conda config --set always_yes yes --set changeps1 no
run_cmd ${CONDA_FOLDER}/bin/conda config --set show_channel_urls true
run_cmd ${CONDA_FOLDER}/bin/conda config --set add_pip_as_python_dependency False
run_cmd ${CONDA_FOLDER}/bin/conda config --set anaconda_upload no
run_cmd ${CONDA_FOLDER}/bin/conda clean --lock
run_cmd cp _ci/conda_build_config.yaml conda/
run_cmd ${CONDA_FOLDER}/bin/conda info
run_cmd mkdir -p ./_ci/${OS_SLUG}/${PYTHON_VERSION} run_cmd mkdir -p ./_ci/${OS_SLUG}/${PYTHON_VERSION}
......
...@@ -288,14 +288,14 @@ merge_conda_cache() { ...@@ -288,14 +288,14 @@ merge_conda_cache() {
install_miniconda() { install_miniconda() {
log_info "Installing miniconda in ${1} ..." log_info "Installing miniconda in ${1} ..."
# Download the latest conda installation script # downloads the latest conda installation script
if [ "${OSNAME}" == "linux" ]; then if [ "${OSNAME}" == "linux" ]; then
object=https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh object=https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
else else
object=https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh object=https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
fi fi
# check if miniconda.sh exists # checks if miniconda.sh exists
if [ ! -e miniconda.sh ]; then if [ ! -e miniconda.sh ]; then
log_info "Downloading latest miniconda3 installer..." log_info "Downloading latest miniconda3 installer..."
run_cmd curl --silent --output miniconda.sh ${object} run_cmd curl --silent --output miniconda.sh ${object}
...@@ -312,7 +312,7 @@ install_miniconda() { ...@@ -312,7 +312,7 @@ install_miniconda() {
# install miniconda # install miniconda
bash miniconda.sh -b -p ${1} bash miniconda.sh -b -p ${1}
# Put back cache and merge urls.txt # Put back cache and merge urls.txt (meaningful only on macosx)
merge_conda_cache ${1}/pkgs ${1}.cached/pkgs merge_conda_cache ${1}/pkgs ${1}.cached/pkgs
# remove the backup cache folder # remove the backup cache folder
rm -rf ${1}.cached rm -rf ${1}.cached
...@@ -350,14 +350,6 @@ if [ -z "${CONDA_FOLDER}" ]; then ...@@ -350,14 +350,6 @@ if [ -z "${CONDA_FOLDER}" ]; then
CONDA_FOLDER=/opt/miniconda CONDA_FOLDER=/opt/miniconda
fi fi
# check if a conda installation exists. Otherwise, install one (only in build
# stage):
if [ ! -e ${CONDA_FOLDER}/bin/conda ]; then
if [ "${CI_JOB_STAGE}" == "build" ]; then
install_miniconda ${CONDA_FOLDER}
fi
fi
PYVER=py$(echo ${PYTHON_VERSION} | tr -d '.') PYVER=py$(echo ${PYTHON_VERSION} | tr -d '.')
if [ -z "${DOCSERVER}" ]; then if [ -z "${DOCSERVER}" ]; then
...@@ -447,3 +439,7 @@ LANG="en_US.UTF-8" ...@@ -447,3 +439,7 @@ LANG="en_US.UTF-8"
LC_ALL="${LANG}" LC_ALL="${LANG}"
export_env LANG export_env LANG
export_env LC_ALL export_env LC_ALL
# Sets up the location of our rc file for conda
CONDARC=${CONDA_FOLDER}/condarc
export_env CONDARC
...@@ -59,8 +59,9 @@ get_exec() { ...@@ -59,8 +59,9 @@ get_exec() {
run_cmd mkdir -pv ${1} run_cmd mkdir -pv ${1}
get_script ${1} cacert.pem get_script ${1} cacert.pem
get_script ${1} functions.sh get_script ${1} functions.sh
get_script ${1} conda_build_config.yaml
get_exec ${1} before_build.sh
for stage in "build" "deploy" "pypi"; do for stage in "build" "deploy" "pypi"; do
get_exec ${1} ${stage}.sh get_exec ${1} ${stage}.sh
done done
get_exec ${1} channel_support.py get_exec ${1} channel_support.py
get_exec ${1} conda_build_config.yaml
...@@ -22,7 +22,10 @@ stages: ...@@ -22,7 +22,10 @@ stages:
- mkdir _ci - mkdir _ci
- curl --silent "https://gitlab.idiap.ch/bob/bob.admin/raw/condapackage/gitlab/install.sh" > _ci/install.sh - curl --silent "https://gitlab.idiap.ch/bob/bob.admin/raw/condapackage/gitlab/install.sh" > _ci/install.sh
- chmod 755 _ci/install.sh - chmod 755 _ci/install.sh
- ./_ci/install.sh _ci condapackage #updates installation - ./_ci/install.sh _ci condapackage #installs ci support scripts
- ./_ci/before_build.sh
variables: &build_variables
CONDA_FOLDER: "${CI_PROJECT_DIR}/${CONDA_ENVS_PATH}"
script: script:
- ./_ci/build.sh - ./_ci/build.sh
...@@ -36,8 +39,6 @@ stages: ...@@ -36,8 +39,6 @@ stages:
tags: tags:
- docker - docker
image: continuumio/conda-concourse-ci image: continuumio/conda-concourse-ci
variables: &linux_variables
CONDA_FOLDER: "/opt/miniconda"
cache: cache:
key: "linux-cache" key: "linux-cache"
paths: paths:
...@@ -53,8 +54,6 @@ stages: ...@@ -53,8 +54,6 @@ stages:
- ${CONDA_ENVS_PATH}/osx-64/*.tar.bz2 - ${CONDA_ENVS_PATH}/osx-64/*.tar.bz2
tags: tags:
- macosx - macosx
variables: &macosx_variables
CONDA_FOLDER: "${CI_PROJECT_DIR}/${CONDA_ENVS_PATH}"
cache: cache:
key: "macosx-cache" key: "macosx-cache"
paths: paths:
...@@ -86,13 +85,13 @@ build_linux_36: ...@@ -86,13 +85,13 @@ build_linux_36:
build_macosx_27: build_macosx_27:
<<: *macosx_build_job <<: *macosx_build_job
variables: variables:
<<: *macosx_variables <<: *build_variables
PYTHON_VERSION: "2.7" PYTHON_VERSION: "2.7"
build_macosx_36: build_macosx_36:
<<: *macosx_build_job <<: *macosx_build_job
variables: variables:
<<: *macosx_variables <<: *build_variables
PYTHON_VERSION: "3.6" PYTHON_VERSION: "3.6"
...@@ -100,7 +99,7 @@ build_macosx_36: ...@@ -100,7 +99,7 @@ build_macosx_36:
.deploy_template: &deploy_job .deploy_template: &deploy_job
stage: deploy stage: deploy
before_script: before_script:
- ./_ci/install.sh _ci condapackage #updates - ./_ci/install.sh _ci condapackage #updates ci support scripts
script: script:
- ./_ci/deploy.sh - ./_ci/deploy.sh
dependencies: dependencies:
...@@ -135,7 +134,7 @@ pypi: ...@@ -135,7 +134,7 @@ pypi:
except: except:
- branches - branches
before_script: before_script:
- ./_ci/install.sh _ci condapackage #updates - ./_ci/install.sh _ci condapackage #updates ci support scripts
script: script:
- ./_ci/pypi.sh - ./_ci/pypi.sh
dependencies: dependencies:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment