mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-22 18:05:10 +00:00
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>
27 lines
550 B
YAML
27 lines
550 B
YAML
version: 2.1
|
|
jobs:
|
|
test-local-gcc:
|
|
machine:
|
|
image: default
|
|
working_directory: ~/criu
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: "Test local with GCC"
|
|
command: sudo -E make -C scripts/ci local
|
|
test-local-clang:
|
|
machine:
|
|
image: default
|
|
working_directory: ~/criu
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: "Test local with CLANG"
|
|
command: sudo -E make -C scripts/ci local CLANG=1
|
|
|
|
workflows:
|
|
version: 2
|
|
builds:
|
|
jobs:
|
|
- test-local-gcc
|
|
- test-local-clang
|