One more try in newer machines

This commit is contained in:
Alex Pyrgiotis 2024-09-09 18:21:35 +03:00
parent 0f4fc72b3e
commit 66849d563c
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA

View file

@ -279,6 +279,18 @@ jobs:
steps:
- checkout
- run: *install-podman
- run:
name: Configure Podman for Ubuntu 22.04
command: |
# This config circumvents the following issues:
# * https://github.com/containers/podman/issues/6368
# * https://github.com/containers/podman/issues/10987
mkdir -p ~/.config/containers
cat > ~/.config/containers/containers.conf \<<EOF
[engine]
cgroup_manager="cgroupfs"
events_logger="file"
EOF
- run:
name: Prepare cache directory
@ -329,10 +341,22 @@ jobs:
ci-debian-trixie:
machine:
image: ubuntu-2204:edge
image: ubuntu-2204:current
steps:
- checkout
- run: *install-podman
- run:
name: Configure Podman for Ubuntu 22.04
command: |
# This config circumvents the following issues:
# * https://github.com/containers/podman/issues/6368
# * https://github.com/containers/podman/issues/10987
mkdir -p ~/.config/containers
cat > ~/.config/containers/containers.conf \<<EOF
[engine]
cgroup_manager="cgroupfs"
events_logger="file"
EOF
- run:
name: Prepare cache directory