1 parent 9484870 commit c1eba1cCopy full SHA for c1eba1c
1 file changed
setup/unix-ci.py
@@ -59,7 +59,7 @@ def install_env():
59
setenv('CALIBRE_QT_PREFIX', '$SW/qt')
60
61
62
-def run(*args):
+def run(*args, timeout=600):
63
if len(args) == 1:
64
args = shlex.split(args[0])
65
print(' '.join(args), flush=True)
@@ -164,7 +164,7 @@ def main():
164
install_env()
165
get_tx()
166
os.environ['TX'] = os.path.abspath('tx')
167
- run(sys.executable, 'setup.py', 'pot')
+ run(sys.executable, 'setup.py', 'pot', timeout=30 * 60)
168
elif action == 'test':
169
os.environ['CI'] = 'true'
170
os.environ['OPENSSL_MODULES'] = os.path.join(SW, 'lib', 'ossl-modules')
0 commit comments