release: 1.8.11
This commit is contained in:
parent
74a7137f00
commit
67d5ddbae9
4 changed files with 20 additions and 7 deletions
|
@ -3,7 +3,7 @@ plugins {
|
|||
}
|
||||
|
||||
|
||||
version = "1.8.11-SNAPSHOT"
|
||||
version = "1.8.11"
|
||||
group = "org.domaindrivenarchitecture.buildtest"
|
||||
|
||||
|
||||
|
|
21
build.py
21
build.py
|
@ -7,11 +7,20 @@ name = "buildtest"
|
|||
MODULE = "release"
|
||||
PROJECT_ROOT_PATH = "."
|
||||
|
||||
version = "1.8.11-dev"
|
||||
version = "1.8.11"
|
||||
|
||||
|
||||
@init(environments=["local"])
|
||||
def initialize1(project):
|
||||
"""
|
||||
to avoid prompt for gopass; ONLY to be used for local tasks
|
||||
usage: with option "-E local" , e.g. "pyb -E local patch_local"
|
||||
"""
|
||||
os.environ["RELEASE_ARTIFACT_TOKEN"] = "dummy" # avoids prompt for RELEASE_ARTIFACT_TOKEN
|
||||
|
||||
|
||||
@init
|
||||
def initialize(project):
|
||||
def initialize2(project):
|
||||
input = {
|
||||
"name": name,
|
||||
"module": MODULE,
|
||||
|
@ -28,7 +37,6 @@ def initialize(project):
|
|||
}
|
||||
|
||||
project.build_depends_on("ddadevops>=4.10.7")
|
||||
os.environ["RELEASE_ARTIFACT_TOKEN"] = "dummy"
|
||||
build = ReleaseMixin(project, input)
|
||||
build.initialize_build_dir()
|
||||
|
||||
|
@ -44,7 +52,12 @@ def patch(project):
|
|||
|
||||
|
||||
@task
|
||||
def increase_version_number(project):
|
||||
def patch_local(project):
|
||||
"""
|
||||
updates version to next patch level,
|
||||
commits primary build file (build.gradle), DOES NOT push to remote
|
||||
"""
|
||||
linttest(project, "PATCH")
|
||||
prepare(project)
|
||||
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ default_task = "dev"
|
|||
name = "ddadevops"
|
||||
MODULE = "not-used"
|
||||
PROJECT_ROOT_PATH = "."
|
||||
version = "1.8.11-dev"
|
||||
version = "1.8.11"
|
||||
summary = "tools to support builds combining gopass, terraform, dda-pallet, aws & hetzner-cloud"
|
||||
description = __doc__
|
||||
authors = [Author("meissa GmbH", "buero@meissa-gmbh.de")]
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "c4k-jira",
|
||||
"description": "Generate c4k yaml for a jira deployment.",
|
||||
"author": "meissa GmbH",
|
||||
"version": "1.8.11-SNAPSHOT",
|
||||
"version": "1.8.11",
|
||||
"homepage": "https://gitlab.com/domaindrivenarchitecture/c4k-jira#readme",
|
||||
"repository": "https://www.npmjs.com/package/c4k-jira",
|
||||
"license": "APACHE2",
|
||||
|
|
Loading…
Reference in a new issue