From ef2efc40f7e8e41941a81d962208238e13ed0d36 Mon Sep 17 00:00:00 2001 From: Michael Jerger Date: Wed, 25 Oct 2023 09:18:41 +0200 Subject: [PATCH] updates for kotlin build --- infrastructure/dind/build.py | 2 +- infrastructure/kotlin/build.py | 3 ++- infrastructure/kotlin/image/resources/install.sh | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/infrastructure/dind/build.py b/infrastructure/dind/build.py index aac3c14..fbe7ca9 100644 --- a/infrastructure/dind/build.py +++ b/infrastructure/dind/build.py @@ -26,7 +26,7 @@ def initialize(project): "image_tag": f"{image_tag}", } - project.build_depends_on("ddadevops>=4.0.0") + project.build_depends_on("ddadevops>=4.7.0") build = DevopsImageBuild(project, input) build.initialize_build_dir() diff --git a/infrastructure/kotlin/build.py b/infrastructure/kotlin/build.py index e487a33..b40b957 100644 --- a/infrastructure/kotlin/build.py +++ b/infrastructure/kotlin/build.py @@ -6,7 +6,8 @@ from ddadevops import * name = "ddadevops" MODULE = "kotlin" PROJECT_ROOT_PATH = "../.." -version = "4.3.2-dev" +version = "4.7.5-dev" + @init def initialize(project): diff --git a/infrastructure/kotlin/image/resources/install.sh b/infrastructure/kotlin/image/resources/install.sh index 202f871..b807340 100755 --- a/infrastructure/kotlin/image/resources/install.sh +++ b/infrastructure/kotlin/image/resources/install.sh @@ -8,7 +8,7 @@ function main() { #install pyb apt -qqy install python3 python3-pip; - pip3 install pybuilder 'ddadevops>=4.2.0' deprecation dda-python-terraform boto3 pyyaml inflection --break-system-packages; + pip3 install pybuilder 'ddadevops>=4.7.0' deprecation dda-python-terraform boto3 pyyaml inflection --break-system-packages; cleanupDocker }