Skip to content

Commit f03e179

Browse files
committed
fix(tests): update VSCode runner to use 24.04
1 parent 084e73b commit f03e179

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.evergreen.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3597,9 +3597,9 @@ functions:
35973597
set -e
35983598
{
35993599
source .evergreen/setup-env.sh
3600-
(cd scripts/docker && docker build -t ubuntu22.04-xvfb -f ubuntu22.04-xvfb.Dockerfile .)
3600+
(cd scripts/docker && docker build -t ubuntu24.04-xvfb -f ubuntu24.04-xvfb.Dockerfile .)
36013601
docker run \
3602-
--rm -v $PWD:/tmp/build ubuntu22.04-xvfb \
3602+
--rm -v $PWD:/tmp/build ubuntu24.04-xvfb \
36033603
-c 'cd /tmp/build && ./testing/test-vscode.sh'
36043604
}
36053605
test_connectivity:

.evergreen/evergreen.yml.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,9 +306,9 @@ functions:
306306
set -e
307307
{
308308
source .evergreen/setup-env.sh
309-
(cd scripts/docker && docker build -t ubuntu22.04-xvfb -f ubuntu22.04-xvfb.Dockerfile .)
309+
(cd scripts/docker && docker build -t ubuntu24.04-xvfb -f ubuntu24.04-xvfb.Dockerfile .)
310310
docker run \
311-
--rm -v $PWD:/tmp/build ubuntu22.04-xvfb \
311+
--rm -v $PWD:/tmp/build ubuntu24.04-xvfb \
312312
-c 'cd /tmp/build && ./testing/test-vscode.sh'
313313
}
314314
test_connectivity:

scripts/docker/ubuntu22.04-xvfb.Dockerfile renamed to scripts/docker/ubuntu24.04-xvfb.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:22.04
1+
FROM ubuntu:24.04
22

33
ENV DEBIAN_FRONTEND=noninteractive
44
RUN apt-get update

0 commit comments

Comments
 (0)