#!/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 is now step_script # but we can also have "step_release" or "step_accessibility" # More info here: # https://docs.gitlab.com/runner/executors/custom.html#run # https://gitlab.com/gitlab-org/gitlab-runner/-/issues/26426 step_*) case $PROJECT_NAME in yunohost) # Nothing to do? ;; esac ;; after_script) ;; archive_cache) ;; upload_artifact_on_success) ;; upload_artifact_on_failure) ;; esac incus exec "$CONTAINER_IMAGE" /bin/bash < "${1}" err=$? if [ $err -ne 0 ]; then echo "Exit with error code $err" # Exit using the variable, to make the build as failure in GitLab # CI. exit $BUILD_FAILURE_EXIT_CODE fi