From 4bd0d54d4ca6d77553257bcb60f0ea619515b13d Mon Sep 17 00:00:00 2001 From: Thomas Irgang <148551277+thir820@users.noreply.github.com> Date: Thu, 22 Aug 2024 17:15:44 +0200 Subject: [PATCH] update version to v1.3.2 (#5) --- build_config.yaml | 2 +- run_container | 6 +++--- stop_container | 2 -- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/build_config.yaml b/build_config.yaml index ad49639..f28c38a 100644 --- a/build_config.yaml +++ b/build_config.yaml @@ -1,7 +1,7 @@ Base-Name: sdk Repository: linux.elektrobit.com/ebcl Base-Container: ubuntu:22.04 -Version: v1.3.1 +Version: v1.3.2 Layers: - base - pbuilder diff --git a/run_container b/run_container index 3cfe7a6..a586f5d 100755 --- a/run_container +++ b/run_container @@ -1,6 +1,6 @@ #!/bin/bash -VERSION="testing" +VERSION="v1.3.2" if [ -z $RUNNER ]; then # docker or podman @@ -64,7 +64,7 @@ if [ ! -z "$@" ]; then -v ${SYSROOT_ARM}:/build/sysroot_aarch64:ro \ -v /dev:/dev \ --privileged \ - linux.elektrobit.com/ebcl/sdk:testing + linux.elektrobit.com/ebcl/sdk:${VERSION} else $RUNNER run --rm -it \ --name $CONTAINER_NAME \ @@ -79,5 +79,5 @@ else -v ${SYSROOT_ARM}:/build/sysroot_aarch64:ro \ -v /dev:/dev \ --privileged \ - linux.elektrobit.com/ebcl/sdk:testing + linux.elektrobit.com/ebcl/sdk:${VERSION} fi diff --git a/stop_container b/stop_container index 807d74a..f019ac8 100755 --- a/stop_container +++ b/stop_container @@ -1,7 +1,5 @@ #!/bin/bash -VERSION="testing" - if [ -z $RUNNER ]; then # docker or podman RUNNER="docker"