mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-05-06 15:37:33 +00:00
The workplace was already being deleted on non-x86_64 platforms, but x86_64 can be affected by the same problem too. That might have been the case with the SNP and TDX test runs from: https://github.com/kata-containers/kata-containers/actions/runs/13687511270/job/38313758751?pr=10973 https://github.com/kata-containers/kata-containers/actions/runs/13687511270/job/38313760086?pr=10973 Rebase worked fine for the same patch/PR on other platforms. Signed-off-by: Dan Mihai <dmihai@microsoft.com>
47 lines
1.0 KiB
Bash
Executable File
47 lines
1.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2023 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
function add_kata_bot_info() {
|
|
echo "Adding user name and email to the local git repo"
|
|
|
|
git config user.email "katacontainersbot@gmail.com"
|
|
git config user.name "Kata Containers Bot"
|
|
}
|
|
|
|
function rebase_atop_of_the_latest_target_branch() {
|
|
if [ -n "${TARGET_BRANCH}" ]; then
|
|
echo "Rebasing atop of the latest ${TARGET_BRANCH}"
|
|
if ! git rebase origin/${TARGET_BRANCH}; then
|
|
if [ -n "${GITHUB_WORKSPACE}" ] ; then
|
|
echo "Rebase failed, cleaning up the local repository and exiting"
|
|
cd "${GITHUB_WORKSPACE}"/..
|
|
sudo rm -rf "${GITHUB_WORKSPACE}"
|
|
else
|
|
echo "Rebase failed, exiting"
|
|
fi
|
|
exit 1
|
|
fi
|
|
fi
|
|
}
|
|
|
|
function main() {
|
|
action="${1:-}"
|
|
|
|
add_kata_bot_info
|
|
|
|
case "${action}" in
|
|
rebase-atop-of-the-latest-target-branch) rebase_atop_of_the_latest_target_branch;;
|
|
*) >&2 echo "Invalid argument"; exit 2 ;;
|
|
esac
|
|
}
|
|
|
|
main "$@"
|