Skip to content

Commit 18172e4

Browse files
[Github] Bump CI container to ubuntu 24.04
This helps keep things up to date, and should not cause any issues given we do not need to care about binary compatibility for things built in the CI container. This patch also changes the name of the container which allows incrementally moving jobs over after this lands. Reviewers: tstellar Reviewed By: tstellar Pull Request: #132568
1 parent 5cb3052 commit 18172e4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-ci-container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
id: vars
4545
run: |
4646
tag=$(git rev-parse --short=12 HEAD)
47-
container_name="ghcr.io/$GITHUB_REPOSITORY_OWNER/${{ matrix.arch }}/ci-ubuntu-22.04"
47+
container_name="ghcr.io/$GITHUB_REPOSITORY_OWNER/${{ matrix.arch }}/ci-ubuntu-24.04"
4848
echo "container-name=$container_name" >> $GITHUB_OUTPUT
4949
echo "container-name-agent=$container_name-agent" >> $GITHUB_OUTPUT
5050
echo "container-name-tag=$container_name:$tag" >> $GITHUB_OUTPUT

.github/workflows/containers/github-action-ci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/library/ubuntu:22.04 as base
1+
FROM docker.io/library/ubuntu:24.04 as base
22
ENV LLVM_SYSROOT=/opt/llvm
33

44
FROM base as stage1-toolchain

0 commit comments

Comments
 (0)