Add initial artifact_deployment_mixin.py
This commit is contained in:
parent
48f7d9c29e
commit
355bd477af
1 changed files with 19 additions and 0 deletions
19
src/main/python/ddadevops/artifact_deployment_mixin.py
Normal file
19
src/main/python/ddadevops/artifact_deployment_mixin.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
from pybuilder.core import Project
|
||||
from .devops_build import DevopsBuild
|
||||
from .domain import MixinType
|
||||
|
||||
"""
|
||||
Req:
|
||||
|
||||
make sha256 sums
|
||||
make sha512 sums
|
||||
push limited no of files to repo.prod.meissa.de
|
||||
|
||||
"""
|
||||
|
||||
|
||||
|
||||
class ArtifactDeploymentMixin(DevopsBuild):
|
||||
def __init__(self, project: Project, inp: dict):
|
||||
super().__init__(project, inp)
|
||||
|
Loading…
Reference in a new issue