CI: clean up after tx checking
This commit is contained in:
parent
e6a2384294
commit
bf21e8a4f5
@ -42,11 +42,9 @@ tx_sum()
|
|||||||
HEAD_SUM=`tx_sum build-txcheck-head ""`
|
HEAD_SUM=`tx_sum build-txcheck-head ""`
|
||||||
PREV_SUM=`tx_sum build-txcheck-prev translation`
|
PREV_SUM=`tx_sum build-txcheck-prev translation`
|
||||||
|
|
||||||
test -d build-txcheck-head || exit 1
|
# An error message will have come from the shell function
|
||||||
test -d build-txcheck-prev || exit 1
|
test -d build-txcheck-head || { echo "$HEAD_SUM" ; exit 1 ; }
|
||||||
|
test -d build-txcheck-prev || { echo "$PREV_SUM" ; exit 1 ; }
|
||||||
echo "HEAD=$HEAD_SUM"
|
|
||||||
echo "PREV=$PREV_SUM"
|
|
||||||
|
|
||||||
if test "$HEAD_SUM" = "$PREV_SUM" ; then
|
if test "$HEAD_SUM" = "$PREV_SUM" ; then
|
||||||
:
|
:
|
||||||
@ -59,4 +57,9 @@ else
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Cleanup artifacs of checking
|
||||||
|
git worktree remove --force build-txcheck-head
|
||||||
|
git worktree remove --force build-txcheck-prev
|
||||||
|
git branch -D build-txcheck-head
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
Loading…
Reference in New Issue
Block a user