Compare commits

...

3 Commits

Author SHA1 Message Date
Jeff Geerling
9246878ea2 Fixup CI versions. Drop all older RHEL releases which are broken. 2024-07-16 14:23:21 -05:00
Jeff Geerling
d5d1d2e4dd
Merge pull request #64 from dmotte/pr-fix-executable-virtualenv
Omit executable if item.virtualenv is defined
2024-03-09 13:59:21 -06:00
dmotte
105436e80f Omit executable if item.virtualenv is defined 2024-03-09 14:01:37 +01:00
3 changed files with 2 additions and 3 deletions

View File

@ -42,7 +42,6 @@ jobs:
matrix: matrix:
distro: distro:
- rockylinux9 - rockylinux9
- rockylinux8
- fedora39 - fedora39
- ubuntu2204 - ubuntu2204
- ubuntu2004 - ubuntu2004

View File

@ -8,7 +8,7 @@ driver:
name: docker name: docker
platforms: platforms:
- name: instance - name: instance
image: "geerlingguy/docker-${MOLECULE_DISTRO:-rockylinux8}-ansible:latest" image: "geerlingguy/docker-${MOLECULE_DISTRO:-rockylinux9}-ansible:latest"
command: ${MOLECULE_DOCKER_COMMAND:-""} command: ${MOLECULE_DOCKER_COMMAND:-""}
volumes: volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:rw - /sys/fs/cgroup:/sys/fs/cgroup:rw

View File

@ -17,5 +17,5 @@
virtualenv: "{{ item.virtualenv | default(omit) }}" virtualenv: "{{ item.virtualenv | default(omit) }}"
state: "{{ item.state | default(omit) }}" state: "{{ item.state | default(omit) }}"
extra_args: "{{ item.extra_args | default(omit) }}" extra_args: "{{ item.extra_args | default(omit) }}"
executable: "{{ pip_executable }}" executable: "{{ item.virtualenv | default(false) | ternary(omit, pip_executable) }}"
loop: "{{ pip_install_packages }}" loop: "{{ pip_install_packages }}"