Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use fedora:41 as base image for the execution environment #484

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion execution-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 3

images:
base_image:
name: quay.io/fedora/fedora-minimal:40
name: quay.io/fedora/fedora-minimal:41

dependencies:
ansible_runner:
Expand Down
3 changes: 3 additions & 0 deletions final/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,3 +136,6 @@ uname -a

# Make a workdir usable by the root user
mkdir -p /workdir

# compatibility with recent docker versions:
chmod go+rwx /etc/passwd
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def _start_container() -> None:
engine = INFRASTRUCTURE.container_engine
cmd = (
f'{engine} ps -q --filter "name={INFRASTRUCTURE.container_name}" | xargs -r {engine} stop;'
f'{engine} ps -aq --filter "name=$name" | xargs -r {engine} rm'
f'{engine} ps -aq --filter "name=$name" | xargs -r {engine} rm --force --volumes'
)
subprocess.run(cmd, check=True, capture_output=False, shell=True, text=True)

Expand Down
Loading