[ueransim] Update Version 3.2.6 -> 3.2.7 (#334)

* 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 <aebarreiro@users.noreply.github.com>
Co-authored-by: Álvaro Vázquez <avrodriguez@gradiant.org>
This commit is contained in:
gradiant-bot
2025-02-18 12:25:00 +01:00
committed by GitHub
parent cf05ab20dc
commit 2e139082f3
3 changed files with 5 additions and 5 deletions

View File

@@ -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:

View File

@@ -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 \

View File

@@ -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