2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-22 09:58:09 +00:00

ci: silence CircleCI warning about deprecated image

CircleCI currently prints out the following warning:

   This job is using a deprecated image 'ubuntu-2004:202010-01', please update to a newer image

According to https://discuss.circleci.com/t/linux-image-deprecations-and-eol-for-2024/
the recommended image name is: "image: default"

Signed-off-by: Adrian Reber <areber@redhat.com>
This commit is contained in:
Adrian Reber 2024-03-24 14:26:41 +00:00 committed by Andrei Vagin
parent 52623cca16
commit 0fc83a79b1

View File

@ -2,7 +2,7 @@ version: 2.1
jobs: jobs:
test-local-gcc: test-local-gcc:
machine: machine:
image: ubuntu-2004:202010-01 image: default
working_directory: ~/criu working_directory: ~/criu
steps: steps:
- checkout - checkout
@ -11,7 +11,7 @@ jobs:
command: sudo -E make -C scripts/ci local command: sudo -E make -C scripts/ci local
test-local-clang: test-local-clang:
machine: machine:
image: ubuntu-2004:202010-01 image: default
working_directory: ~/criu working_directory: ~/criu
steps: steps:
- checkout - checkout