Commit 4cfe9583 authored by Jędrzej Nowacki's avatar Jędrzej Nowacki Committed by Frederik Gladhorn
Browse files

Report build failure by qdoc bot.


Change-Id: I1a88ac25571ad0e23672098dc03c2bb85062f390
Reviewed-by: default avatarFrederik Gladhorn <frederik.gladhorn@digia.com>
parent 815b29ca
No related merge requests found
Showing with 1 addition and 1 deletion
...@@ -71,7 +71,7 @@ def run_qdoc(module_name): ...@@ -71,7 +71,7 @@ def run_qdoc(module_name):
environment["CCACHE_BASEDIR"] = os.getcwd() environment["CCACHE_BASEDIR"] = os.getcwd()
environment["QT_HASH_SEED"] = "1234" environment["QT_HASH_SEED"] = "1234"
cmd = "(./configure -opensource -confirm-license -release && make sub-src-qmake_all && cd src/tools && make sub-qdoc) > /dev/null" cmd = "(./configure -opensource -confirm-license -release && make sub-src-qmake_all && cd src/tools && make sub-qdoc) > /dev/null"
subprocess.call(cmd, shell=True, env=environment) subprocess.check_call(cmd, shell=True, env=environment)
cmd = "make docs".split() cmd = "make docs".split()
output.append(subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=environment).communicate()[1]) output.append(subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=environment).communicate()[1])
def smart_concatenate(r, x): def smart_concatenate(r, x):
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment