2019-11-25 13:11:18 +01:00
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
2020-03-26 17:50:12 +01:00
|
|
|
|
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
|
source $current_dir/base.sh # Get variables from base.
|
2019-11-25 13:11:18 +01:00
|
|
|
|
|
|
|
|
|
create_sym_link() {
|
|
|
|
|
local DEST=$1
|
|
|
|
|
local LINK=$2
|
|
|
|
|
# Remove current sources if not a symlink
|
2020-03-19 23:55:07 +01:00
|
|
|
|
lxc exec "$CONTAINER_ID" -- sh -c "[ -L "$LINK" ] || rm -rf $LINK"
|
2019-11-25 13:11:18 +01:00
|
|
|
|
# Symlink from Git repository
|
|
|
|
|
lxc exec "$CONTAINER_ID" -- sh -c "ln -sfn $DEST $LINK"
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-19 23:55:07 +01:00
|
|
|
|
link_moulinette_from_git() {
|
2020-03-26 19:24:31 +01:00
|
|
|
|
echo "Moulinette: using the $CURRENT_BRANCH branch if it exists, $DEFAULT_BRANCH otherwise"
|
|
|
|
|
|
2020-03-19 23:55:07 +01:00
|
|
|
|
moulinette_dir="/tmp/ci_moulinette"
|
|
|
|
|
lxc exec "$CONTAINER_ID" -- sh -c "mkdir $moulinette_dir"
|
2020-03-21 18:03:21 +01:00
|
|
|
|
lxc exec "$CONTAINER_ID" -- sh -c "git clone https://github.com/YunoHost/moulinette $moulinette_dir"
|
2020-03-21 18:15:33 +01:00
|
|
|
|
lxc exec "$CONTAINER_ID" -- sh -c "(cd $moulinette_dir; \
|
|
|
|
|
if git ls-remote --heads | grep -q $CURRENT_BRANCH; \
|
|
|
|
|
then \
|
|
|
|
|
git checkout $CURRENT_BRANCH; \
|
|
|
|
|
else \
|
|
|
|
|
git checkout $DEFAULT_BRANCH; \
|
|
|
|
|
fi)"
|
2020-03-19 23:55:07 +01:00
|
|
|
|
|
|
|
|
|
create_sym_link "$moulinette_dir/locales" "/usr/share/moulinette/locale"
|
|
|
|
|
create_sym_link "$moulinette_dir/moulinette" "/usr/lib/python2.7/dist-packages/moulinette"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
link_ssowat_from_git() {
|
2020-03-26 19:24:31 +01:00
|
|
|
|
echo "SSOWAT: using the $CURRENT_BRANCH branch if it exists, $DEFAULT_BRANCH otherwise"
|
|
|
|
|
|
2020-03-19 23:55:07 +01:00
|
|
|
|
ssowat_dir="/tmp/ci_ssowat"
|
|
|
|
|
lxc exec "$CONTAINER_ID" -- sh -c "mkdir $ssowat_dir"
|
2020-03-21 18:03:21 +01:00
|
|
|
|
lxc exec "$CONTAINER_ID" -- sh -c "git clone https://github.com/YunoHost/ssowat $ssowat_dir"
|
2020-03-21 18:15:33 +01:00
|
|
|
|
lxc exec "$CONTAINER_ID" -- sh -c "(cd $ssowat_dir; \
|
|
|
|
|
if git ls-remote --heads | grep -q $CURRENT_BRANCH; \
|
|
|
|
|
then \
|
|
|
|
|
git checkout $CURRENT_BRANCH; \
|
|
|
|
|
else \
|
|
|
|
|
git checkout $DEFAULT_BRANCH; \
|
|
|
|
|
fi)"
|
2020-03-19 23:55:07 +01:00
|
|
|
|
|
|
|
|
|
create_sym_link "$ssowat_dir" "/usr/share/ssowat"
|
2020-03-29 18:39:14 +02:00
|
|
|
|
|
|
|
|
|
lxc exec "$CONTAINER_ID" -- sh -c "systemctl reload nginx"
|
2020-03-19 23:55:07 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-25 13:11:18 +01:00
|
|
|
|
case ${2} in
|
|
|
|
|
prepare_script)
|
|
|
|
|
;;
|
|
|
|
|
get_sources)
|
|
|
|
|
;;
|
|
|
|
|
restore_cache)
|
|
|
|
|
;;
|
|
|
|
|
download_artifacts)
|
|
|
|
|
;;
|
|
|
|
|
build_script)
|
|
|
|
|
case $PROJECT_NAME in
|
|
|
|
|
yunohost)
|
2020-03-26 19:24:31 +01:00
|
|
|
|
echo "Link yunohost"
|
|
|
|
|
|
2019-11-25 13:11:18 +01:00
|
|
|
|
# bin
|
2020-03-19 23:55:07 +01:00
|
|
|
|
create_sym_link "$PROJECT_DIR/bin/yunohost" "/usr/bin/yunohost"
|
|
|
|
|
create_sym_link "$PROJECT_DIR/bin/yunohost-api" "/usr/bin/yunohost-api"
|
2019-11-25 13:11:18 +01:00
|
|
|
|
|
|
|
|
|
# data
|
2020-03-19 23:55:07 +01:00
|
|
|
|
create_sym_link "$PROJECT_DIR/data/actionsmap/yunohost.yml" "/usr/share/moulinette/actionsmap/yunohost.yml"
|
|
|
|
|
create_sym_link "$PROJECT_DIR/data/hooks" "/usr/share/yunohost/hooks"
|
|
|
|
|
create_sym_link "$PROJECT_DIR/data/templates" "/usr/share/yunohost/templates"
|
|
|
|
|
create_sym_link "$PROJECT_DIR/data/helpers" "/usr/share/yunohost/helpers"
|
|
|
|
|
create_sym_link "$PROJECT_DIR/data/helpers.d" "/usr/share/yunohost/helpers.d"
|
|
|
|
|
create_sym_link "$PROJECT_DIR/data/other" "/usr/share/yunohost/yunohost-config/moulinette"
|
2019-11-25 13:11:18 +01:00
|
|
|
|
# debian
|
2020-03-19 23:55:07 +01:00
|
|
|
|
create_sym_link "$PROJECT_DIR/debian/conf/pam/mkhomedir" "/usr/share/pam-configs/mkhomedir"
|
2019-11-25 13:11:18 +01:00
|
|
|
|
|
|
|
|
|
# lib
|
2020-03-19 23:55:07 +01:00
|
|
|
|
create_sym_link "$PROJECT_DIR/lib/metronome/modules/ldap.lib.lua" "/usr/lib/metronome/modules/ldap.lib.lua"
|
|
|
|
|
create_sym_link "$PROJECT_DIR/lib/metronome/modules/mod_auth_ldap2.lua" "/usr/lib/metronome/modules/mod_auth_ldap2.lua"
|
|
|
|
|
create_sym_link "$PROJECT_DIR/lib/metronome/modules/mod_legacyauth.lua" "/usr/lib/metronome/modules/mod_legacyauth.lua"
|
|
|
|
|
create_sym_link "$PROJECT_DIR/lib/metronome/modules/mod_storage_ldap.lua" "/usr/lib/metronome/modules/mod_storage_ldap.lua"
|
|
|
|
|
create_sym_link "$PROJECT_DIR/lib/metronome/modules/vcard.lib.lua" "/usr/lib/metronome/modules/vcard.lib.lua"
|
2019-11-25 13:11:18 +01:00
|
|
|
|
|
|
|
|
|
# src
|
2020-03-19 23:55:07 +01:00
|
|
|
|
create_sym_link "$PROJECT_DIR/src/yunohost" "/usr/lib/moulinette/yunohost"
|
2019-11-25 13:11:18 +01:00
|
|
|
|
|
|
|
|
|
# locales
|
2020-03-19 23:55:07 +01:00
|
|
|
|
create_sym_link "$PROJECT_DIR/locales" "/usr/lib/moulinette/yunohost/locales"
|
|
|
|
|
|
|
|
|
|
# moulinette
|
|
|
|
|
link_moulinette_from_git
|
|
|
|
|
|
|
|
|
|
# ssowat
|
|
|
|
|
link_ssowat_from_git
|
2019-11-25 13:11:18 +01:00
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
;;
|
|
|
|
|
after_script)
|
|
|
|
|
;;
|
|
|
|
|
archive_cache)
|
|
|
|
|
;;
|
|
|
|
|
upload_artifact_on_success)
|
|
|
|
|
;;
|
|
|
|
|
upload_artifact_on_failure)
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lxc exec "$CONTAINER_ID" /bin/bash < "${1}"
|
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
|
# Exit using the variable, to make the build as failure in GitLab
|
|
|
|
|
# CI.
|
|
|
|
|
exit $BUILD_FAILURE_EXIT_CODE
|
|
|
|
|
fi
|