mirror of
https://github.com/YunoHost/yunohost-ci.git
synced 2024-09-03 20:05:53 +02:00
117 lines
No EOL
3.8 KiB
Bash
Executable file
117 lines
No EOL
3.8 KiB
Bash
Executable file
#!/usr/bin/env bash
|
||
|
||
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
||
source $current_dir/base.sh # Get variables from base.
|
||
|
||
create_sym_link() {
|
||
local DEST=$1
|
||
local LINK=$2
|
||
# Remove current sources if not a symlink
|
||
lxc exec "$CONTAINER_ID" -- sh -c "[ -L "$LINK" ] || rm -rf $LINK"
|
||
# Symlink from Git repository
|
||
lxc exec "$CONTAINER_ID" -- sh -c "ln -sfn $DEST $LINK"
|
||
}
|
||
|
||
link_moulinette_from_git() {
|
||
echo "Moulinette: using the $CURRENT_BRANCH branch if it exists, $DEFAULT_BRANCH otherwise"
|
||
|
||
moulinette_dir="/tmp/ci_moulinette"
|
||
lxc exec "$CONTAINER_ID" -- sh -c "mkdir $moulinette_dir"
|
||
lxc exec "$CONTAINER_ID" -- sh -c "git clone https://github.com/YunoHost/moulinette $moulinette_dir"
|
||
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)"
|
||
|
||
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() {
|
||
echo "SSOWAT: using the $CURRENT_BRANCH branch if it exists, $DEFAULT_BRANCH otherwise"
|
||
|
||
ssowat_dir="/tmp/ci_ssowat"
|
||
lxc exec "$CONTAINER_ID" -- sh -c "mkdir $ssowat_dir"
|
||
lxc exec "$CONTAINER_ID" -- sh -c "git clone https://github.com/YunoHost/ssowat $ssowat_dir"
|
||
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)"
|
||
|
||
create_sym_link "$ssowat_dir" "/usr/share/ssowat"
|
||
|
||
lxc exec "$CONTAINER_ID" -- sh -c "systemctl reload nginx"
|
||
}
|
||
|
||
case ${2} in
|
||
prepare_script)
|
||
;;
|
||
get_sources)
|
||
;;
|
||
restore_cache)
|
||
;;
|
||
download_artifacts)
|
||
;;
|
||
build_script)
|
||
case $PROJECT_NAME in
|
||
yunohost)
|
||
echo "Link yunohost"
|
||
|
||
# bin
|
||
create_sym_link "$PROJECT_DIR/bin/yunohost" "/usr/bin/yunohost"
|
||
create_sym_link "$PROJECT_DIR/bin/yunohost-api" "/usr/bin/yunohost-api"
|
||
|
||
# data
|
||
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"
|
||
# debian
|
||
create_sym_link "$PROJECT_DIR/debian/conf/pam/mkhomedir" "/usr/share/pam-configs/mkhomedir"
|
||
|
||
# lib
|
||
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"
|
||
|
||
# src
|
||
create_sym_link "$PROJECT_DIR/src/yunohost" "/usr/lib/moulinette/yunohost"
|
||
|
||
# locales
|
||
create_sym_link "$PROJECT_DIR/locales" "/usr/lib/moulinette/yunohost/locales"
|
||
|
||
# moulinette
|
||
link_moulinette_from_git
|
||
|
||
# ssowat
|
||
link_ssowat_from_git
|
||
;;
|
||
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 |