mirror of
https://github.com/YunoHost/yunohost-ci.git
synced 2024-09-03 20:05:53 +02:00
39 lines
No EOL
868 B
Bash
Executable file
39 lines
No EOL
868 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
source $current_dir/variables.sh # Get variables from variables.
|
|
|
|
case ${2} in
|
|
prepare_script)
|
|
echo "CI OPEN: $CUSTOM_ENV_CI_OPEN_MERGE_REQUESTS / CI PIPELINE SOURCE: $CUSTOM_ENV_CI_PIPELINE_SOURCE / REF NAME: $CUSTOM_ENV_CI_COMMIT_REF_NAME / COMMIT: $CUSTOM_ENV_CI_COMMIT_BRANCH, TAG: $CUSTOM_ENV_CI_COMMIT_TAG"
|
|
;;
|
|
get_sources)
|
|
;;
|
|
restore_cache)
|
|
;;
|
|
download_artifacts)
|
|
;;
|
|
build_script)
|
|
case $PROJECT_NAME in
|
|
yunohost)
|
|
# Nothing to do?
|
|
;;
|
|
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 |