fix linting
This commit is contained in:
parent
9517e9081e
commit
1585f15582
1 changed files with 26 additions and 29 deletions
|
@ -1,47 +1,44 @@
|
||||||
from pybuilder.core import Project
|
from pybuilder.core import Project
|
||||||
from .devops_build import DevopsBuild
|
from .devops_build import DevopsBuild
|
||||||
from .domain import MixinType
|
|
||||||
|
|
||||||
"""
|
# """
|
||||||
Functional Req:
|
# Functional Req:
|
||||||
|
|
||||||
General process for deploying prebuilt (meissa) binaries to our own repo server.
|
# General process for deploying prebuilt (meissa) binaries to our own repo server.
|
||||||
|
|
||||||
[0]
|
# [0]
|
||||||
get artifact deployment url
|
# get artifact deployment url
|
||||||
|
|
||||||
[1]
|
# [1]
|
||||||
build ubejarServer
|
# build ubejarServer
|
||||||
build ubejarDesktop
|
# build ubejarDesktop
|
||||||
build ubejarSyspec
|
# build ubejarSyspec
|
||||||
|
|
||||||
[2]
|
# [2]
|
||||||
get release token
|
# get release token
|
||||||
|
|
||||||
[3]
|
# [3]
|
||||||
get release tag
|
# get release tag
|
||||||
|
|
||||||
[4]
|
# [4]
|
||||||
post a json message containting [3] to [0], watching stdout for answers
|
# post a json message containting [3] to [0], watching stdout for answers
|
||||||
authorized by [2]
|
# authorized by [2]
|
||||||
validate if [4] was successful by reading stdout
|
# validate if [4] was successful by reading stdout
|
||||||
or create error message containing ID of release
|
# or create error message containing ID of release
|
||||||
|
|
||||||
[5]
|
# [5]
|
||||||
get release-id
|
# get release-id
|
||||||
print release-id
|
# print release-id
|
||||||
|
|
||||||
[6]
|
# [6]
|
||||||
generate sha256 sums & generate sha512 sums of results of [1]
|
# generate sha256 sums & generate sha512 sums of results of [1]
|
||||||
|
|
||||||
[7]
|
# [7]
|
||||||
push results of [1] & [6] to [0]/[5]
|
# push results of [1] & [6] to [0]/[5]
|
||||||
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# """
|
||||||
|
|
||||||
|
|
||||||
class ArtifactDeploymentMixin(DevopsBuild):
|
class ArtifactDeploymentMixin(DevopsBuild):
|
||||||
def __init__(self, project: Project, inp: dict):
|
def __init__(self, project: Project, inp: dict):
|
||||||
super().__init__(project, inp)
|
super().__init__(project, inp)
|
||||||
|
|
Loading…
Reference in a new issue