Skip to content

Commit

Permalink
[ueransim] Update Version 3.2.6 -> 3.2.7 (#334)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
Co-authored-by: Álvaro Vázquez <[email protected]>
  • Loading branch information
3 people authored Feb 18, 2025
1 parent cf05ab2 commit 2e13908
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions images/ueransim/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04 AS builder
FROM ubuntu:24.04 AS builder

ARG version=3.1.0
ARG commit=
Expand Down Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion images/ueransim/image_info.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2e13908

Please sign in to comment.