aboutsummaryrefslogtreecommitdiff
path: root/lib/common.sh
diff options
context:
space:
mode:
Diffstat (limited to 'lib/common.sh')
-rw-r--r--lib/common.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/common.sh b/lib/common.sh
index d0424e49..05d61a80 100644
--- a/lib/common.sh
+++ b/lib/common.sh
@@ -30,7 +30,6 @@ set -o pipefail
. "${topdir}/lib/git-parser.sh" || exit 1
. "${topdir}/lib/stamp.sh" || exit 1
. "${topdir}/lib/schroot.sh" || exit 1
-. "${topdir}/lib/gerrit.sh" || exit 1
. "${topdir}/lib/component.sh" || exit 1
. "${topdir}/lib/control.sh" || exit 1
@@ -299,9 +298,6 @@ build_failure()
local time="`expr ${SECONDS} / 60`"
error "Build process failed after ${time} minutes"
- if test x"${gerrit}" = xyes; then
- gerrit_build_status ${gcc_version} 1
- fi
exit 1
}
@@ -310,10 +306,6 @@ build_success()
local time="`expr ${SECONDS} / 60`"
notice "Build process succeeded after ${time} minutes"
- if test x"${gerrit}" = xyes; then
- gerrit_build_status ${gcc_version} 0
- fi
-
return 0
}
@@ -322,9 +314,5 @@ test_success()
local time="`expr ${SECONDS} / 60`"
notice "Test run completed after ${time} minutes"
- if test x"${gerrit}" = xyes; then
- gerrit_build_status ${gcc_version} 6
- fi
-
return 0
}