1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-05 09:18:06 +03:00

autobuild: allow AUTOBUILD_FAIL_IMMEDIATELY=0 (say from a gitlab variable)

This allows making a push to do a full test ignoring errors without
needing "HACK!!!" commits on top.

Use like this:

git push -o ci.variable='AUTOBUILD_FAIL_IMMEDIATELY=0'

RN: Samba CI runs can now continue past the first error if AUTOBUILD_FAIL_IMMEDIATELY=0 is set

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14841

Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org
Reviewed-by: Noel Power <npower@samba.org>
(cherry picked from commit b81f6f3d71)

Autobuild-User(v4-15-test): Jule Anger <janger@samba.org>
Autobuild-Date(v4-15-test): Thu Sep 23 10:28:48 UTC 2021 on sn-devel-184
This commit is contained in:
Andrew Bartlett 2021-09-17 16:43:00 +12:00 committed by Jule Anger
parent 4c85e56501
commit 4b1e853561

View File

@ -166,7 +166,6 @@ def format_option(name, value=None):
def make_test(
cmd='make testonly',
FAIL_IMMEDIATELY=1,
INJECT_SELFTEST_PREFIX=1,
TESTS='',
include_envs=None,
@ -182,7 +181,13 @@ def make_test(
TESTS = (TESTS + ' ' + ' '.join(test_options)).strip()
_options = []
if FAIL_IMMEDIATELY:
# Allow getting a full CI with
# git push -o ci.variable='AUTOBUILD_FAIL_IMMEDIATELY=0'
FAIL_IMMEDIATELY = os.getenv("AUTOBUILD_FAIL_IMMEDIATELY", "1")
if int(FAIL_IMMEDIATELY):
_options.append('FAIL_IMMEDIATELY=1')
if TESTS:
_options.append("TESTS='{}'".format(TESTS))