From 2e139082f3aff339a05698339cd527f31e9defdf Mon Sep 17 00:00:00 2001 From: gradiant-bot <61580440+gradiant-bot@users.noreply.github.com> Date: Tue, 18 Feb 2025 12:25:00 +0100 Subject: [PATCH] [ueransim] Update Version 3.2.6 -> 3.2.7 (#334) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Updating version ueransim [3.2.6 -> 3.2.7] * updates Ubuntu version to fix gcc error * changes github runner OS version to fix segfault --------- Co-authored-by: aebarreiro Co-authored-by: Álvaro Vázquez --- .github/workflows/build.yml | 4 ++-- images/ueransim/Dockerfile | 4 ++-- images/ueransim/image_info.sh | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e979a5d..384bd76 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ env: jobs: # Generate the values for images with changes generate-matrix: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 outputs: matrix: ${{ steps.generate-matrix.outputs.matrix }} steps: @@ -33,7 +33,7 @@ jobs: # build image if changes in code build-image: needs: generate-matrix - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 strategy: matrix: ${{ fromJson( needs.generate-matrix.outputs.matrix ) }} steps: diff --git a/images/ueransim/Dockerfile b/images/ueransim/Dockerfile index a9563e5..ff33cbf 100644 --- a/images/ueransim/Dockerfile +++ b/images/ueransim/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:22.04 AS builder +FROM ubuntu:24.04 AS builder ARG version=3.1.0 ARG commit= @@ -29,7 +29,7 @@ RUN cd /tmp && git clone https://github.com/aligungr/UERANSIM.git && \ RUN cd /tmp/UERANSIM && echo "cmake --version" && make -FROM ubuntu:22.04 AS release +FROM ubuntu:24.04 AS release RUN apt-get update && \ DEBIAN_FRONTEND=noninteractive \ diff --git a/images/ueransim/image_info.sh b/images/ueransim/image_info.sh index 144b55f..1db323a 100644 --- a/images/ueransim/image_info.sh +++ b/images/ueransim/image_info.sh @@ -1,3 +1,3 @@ -IMAGE_TAG=3.2.6 +IMAGE_TAG=3.2.7 #comma separated list of platforms. If empty, image will not be multiarch. PLATFORMS=linux/amd64,linux/arm64