2019-12-24 17:11:30 +03:00

337 lines
9.4 KiB
Python

# This Python file uses the following encoding: utf-8
import BuildBotLib.basemodule as base
from buildbot.plugins import secrets, util, steps
from pathlib import Path
import datetime
import os
import subprocess
from BuildBotLib.secretManager import *
def isClean(step):
return step.getProperty('clean');
def isDeploy(step):
return step.getProperty('deploy');
def isRelease(step):
return step.getProperty('release');
def isTest(step):
return step.getProperty('test');
def isWin(step):
return step.getProperty('Windows');
def isLinux(step):
return step.getProperty('Linux');
def isAndroid(step):
return step.getProperty('Android');
def destDirPrivate(props):
repo = str(props.getProperty('repository'));
now = datetime.datetime.now().strftime("(%H_%M)_%m-%d-%Y")
return repo[repo.rfind('/'): len(repo) - 4] + "/" + now;
@util.renderer
def destDir(props):
home = str(Path.home())
return home + '/shared/' + destDirPrivate(props);
@util.renderer
def destDirUrl(props):
path = destDirPrivate(props);
return "http://quasarapp.ddns.net:3031" + path;
@util.renderer
def permission(props):
home = str(Path.home())
return ["chmod", "-R", "775", home + '/shared']
def LinuxSteps() :
list = [
steps.ShellCommand(
command = [
'qmake-linux',
"-r",
"CONFIG+=qtquickcompiler",
'ONLINE="~/repo"'
],
haltOnFailure = True,
doStepIf = lambda step : isLinux(step),
name = 'QMake Linux',
description = 'create a make files for projects',
),
steps.ShellCommand(
command = ['make', 'clean'],
doStepIf = lambda step : isClean(step) and isLinux(step),
name = 'clean Linux',
description = 'clean old build data',
),
steps.Compile(
command = base.makeCommand,
name = 'Build Linux',
doStepIf = lambda step : isLinux(step),
haltOnFailure = True,
description = 'run make for project',
),
steps.ShellCommand(
command= ['make', 'deploy'],
doStepIf = lambda step : isDeploy(step) and isLinux(step),
name = 'deploy Linux',
haltOnFailure = True,
description = 'deploy project ',
),
steps.Compile(
command= ['make', 'test'],
doStepIf = lambda step : isTest(step) and isLinux(step),
name = 'tests ',
haltOnFailure = True,
description = 'run autotests of project',
),
steps.ShellCommand(
command= ['make', 'release'],
doStepIf = lambda step : isRelease(step) and isLinux(step),
name = 'release Linux',
haltOnFailure = True,
description = 'release project, like push to store or online repository',
),
steps.ShellCommand(
command = ['make', 'distclean'],
doStepIf = lambda step : isLinux(step),
name = 'clean Linux makefiles',
description = 'clean old makefiles ',
),
]
return list;
@util.renderer
def androidQmake(props):
secret = SecretManager("/home/andrei/buildBotSecret/secret.json")
command = [
'qmake-android',
'-spec', 'android-clang',
"-r",
"CONFIG+=qtquickcompiler",
'SIGN_PATH="' + secret.getValue('SIGPATH') + '"',
'SIGN_ALIES="quasarapp"',
'SIGN_STORE_PASSWORD="' + secret.getValue('SIGPASS') + '"'
]
return command
def AndroidSteps() :
list = [
steps.ShellCommand(
command = androidQmake,
haltOnFailure = True,
doStepIf = lambda step : isAndroid(step),
env={'ANDROID_NDK_ROOT': '/home/andrei/Android/ndk-bundle',
'JAVA_HOME': '/usr',
'ANDROID_HOME': '/home/andrei/Android'},
name = 'QMake Android',
description = 'create a make files for projects',
),
steps.ShellCommand(
command = ['make', 'clean'],
doStepIf = lambda step : isClean(step) and isAndroid(step),
name = 'clean Android',
description = 'clean old build data',
),
steps.Compile(
command = base.makeCommand,
name = 'Build Android',
doStepIf = lambda step : isAndroid(step),
haltOnFailure = True,
description = 'run make for project',
),
steps.ShellCommand(
command= ['make', 'deploy'],
doStepIf = lambda step : isDeploy(step) and isAndroid(step),
name = 'deploy Android',
haltOnFailure = True,
description = 'deploy project ',
),
steps.ShellCommand(
command= ['make', 'release'],
doStepIf = lambda step : isRelease(step) and isAndroid(step),
name = 'release Android',
haltOnFailure = True,
description = 'release project, like push to store or online repository',
),
steps.ShellCommand(
command = ['make', 'distclean'],
doStepIf = lambda step : isAndroid(step),
name = 'clean Android makefiles',
description = 'clean old makefiles ',
),
]
return list;
def WinSteps() :
list = [
steps.ShellCommand(
command = [
'qmake-windows',
'-spec', 'win32-g++',
"-r",
"CONFIG+=qtquickcompiler",
'ONLINE="~/repo"'
],
name = 'QMake Windows',
haltOnFailure = True,
doStepIf = lambda step : isWin(step),
description = 'create a make files for projects',
),
steps.ShellCommand(
command = ['make', 'clean'],
doStepIf = lambda step : isClean(step) and isWin(step),
name = 'clean Windows',
description = 'clean old build data',
),
steps.Compile(
command = base.makeCommand,
name = 'Build Windows',
haltOnFailure = True,
doStepIf = lambda step : isWin(step),
description = 'run make for project',
),
steps.ShellCommand(
command= ['make', 'deploy'],
doStepIf = lambda step : isDeploy(step) and isWin(step),
name = 'deploy Windows',
haltOnFailure = True,
description = 'deploy project ',
),
steps.ShellCommand(
command= ['make', 'release'],
doStepIf = lambda step : isRelease(step) and isWin(step),
name = 'release Windows',
haltOnFailure = True,
description = 'release project, like push to store or online repository',
),
steps.ShellCommand(
command = ['make', 'distclean'],
doStepIf = lambda step : isWin(step),
name = 'clean Windows makefiles',
description = 'clean old makefiles ',
),
]
return list;
def getFactory():
factory = base.getFactory();
factory.addStep(
steps.Git(
repourl=util.Interpolate('%(prop:repository)s'),
branch=util.Interpolate('%(prop:branch)s'),
mode='full',
method = 'fresh',
submodules=True,
name = 'git operations',
description = 'operations of git like pull clone fetch',
)
);
factory.addSteps(LinuxSteps());
factory.addSteps(WinSteps());
factory.addSteps(AndroidSteps());
factory.addStep(
steps.DirectoryUpload(
workersrc = util.Interpolate('%(prop:copyFolder)s'),
masterdest = destDir,
url = destDirUrl,
doStepIf = lambda step : isDeploy(step),
name = 'copy buildet files',
description = 'copy buildet files to shared folder',
)
);
factory.addStep(
steps.ShellCommand(
command= permission,
name = 'set permission',
haltOnFailure = True,
description = 'set permission for shared folder',
)
);
return factory
def getRepo():
return "";
def getPropertyes():
return [
util.BooleanParameter(
name = 'Windows',
label = 'Windows version project',
default = True
),
util.BooleanParameter(
name = 'Linux',
label = 'Linux version project',
default = True
),
util.BooleanParameter(
name = 'Android',
label = 'Android version project',
default = True
),
util.BooleanParameter(
name = 'clean',
label = 'clean old build ',
default = True
),
util.BooleanParameter(
name = 'deploy',
label = 'deploy project',
default = True
),
util.BooleanParameter(
name = 'test',
label = 'test project ',
default = True
),
util.BooleanParameter(
name = 'release',
label = 'release project',
default = False
),
util.StringParameter(
name = 'copyFolder',
label = 'Folder with buildet data',
default = "Distro"
),
]