Run build slave scripts with Python 3 on all platforms

This commit is contained in:
2019-09-02 18:26:03 +02:00
parent 4af634c690
commit f62826f92c

View File

@@ -279,7 +279,7 @@ def lib_svn_step(dir):
def rsync_step(id, branch, rsync_script):
return ShellCommand(name='rsync',
command=['python', rsync_script, id, branch],
command=['python3', rsync_script, id, branch],
description='uploading',
descriptionDone='uploaded',
workdir='install')
@@ -310,11 +310,11 @@ def generic_builder(id, libdir='', branch='', rsync=False):
f.addStep(git_step(branch))
f.addStep(git_submodules_update())
f.addStep(Compile(command=['python', compile_script, id], timeout=3600))
f.addStep(Test(command=['python', test_script, id]))
f.addStep(Compile(command=['python3', compile_script, id], timeout=3600))
f.addStep(Test(command=['python3', test_script, id]))
f.addStep(ShellCommand(
name='package',
command=['python',
command=['python3',
pack_script,
id,
branch or Interpolate('%(src:blender:branch)s')],