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

Fix test #68

Merged
merged 5 commits into from
Jan 11, 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 .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
python-version: '3.x'

- name: Install test dependencies.
run: pip3 install ansible molecule[docker] docker
run: pip3 install ansible molecule-plugins[docker] docker

- name: Run Molecule tests.
run: molecule test
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ docker_version: "latest"
docker_compatible_versions: []
docker_install_criu: true
docker_install_pip: true
docker_compose_version: "2.23.3"
docker_compose_version: "v2.23.2"
docker_config_values: {}
# Nvidia docker options to add in the docker.json file
docker_nvidia_support: false
Expand Down
2 changes: 1 addition & 1 deletion tasks/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

- block:
- name: Include "{{ansible_os_family}}" tasks
include: "{{ansible_os_family}}.yml"
include_tasks: "{{ansible_os_family}}.yml"

- name: Assure that /etc/default/docker exists
copy:
Expand Down
Loading