Skip to content
Snippets Groups Projects
Commit 43336271 authored by Dennis Gläser's avatar Dennis Gläser
Browse files

[ci] do not stop building after failing build

parent b7b8d4e6
No related branches found
No related tags found
1 merge request!2603[ci] do not stop building after failing build
Pipeline #3917 waiting for manual action
......@@ -16,7 +16,7 @@ if sys.version_info.major < 3:
sys.exit('Python 3 required')
def buildTests(config, flags=['j4']):
def buildTests(config, flags=['-j4', '--keep-going']):
if not config:
print('No tests to be built')
......@@ -74,7 +74,7 @@ if __name__ == '__main__':
help='use this flag to run the tests')
parser.add_argument('-bf', '--buildflags',
required=False,
default='-j4',
default='-j4 --keep-going',
help='set the flags passed to make')
parser.add_argument('-tf', '--testflags',
required=False,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment