mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-05-07 05:43:06 +00:00
* Add CI group 2 for Ansible 2.9 tests. * Temporarily disable some nodes. * Fix ignore.txt. * Use version prefix instead of groups. * Ansible 2.9 doesn't support Python 3.9 ci_complete * Make Ansible 2.9 compatible. * Replace archive/unarchive with copy. * Remove dependency on community.general in integration tests for Ansible 2.9. * Let's see. * Ansible 2.9's copy doesn't create directories. * Re-enable no dependency. ci_complete * path should be bytes. * Reenable nodes, add two more. * Force complete CI run for Ansible 2.9. * Used wrong variable. * Fix Ansible 2.9 compatibility...
13 lines
412 B
YAML
13 lines
412 B
YAML
---
|
|
- set_fact:
|
|
pkg_mgr: community.general.pkgng
|
|
ansible_pkg_mgr: community.general.pkgng
|
|
cacheable: yes
|
|
when: ansible_os_family == 'FreeBSD' and ansible_version.string is version('2.10', '>=')
|
|
|
|
- set_fact:
|
|
pkg_mgr: community.general.zypper
|
|
ansible_pkg_mgr: community.general.zypper
|
|
cacheable: yes
|
|
when: ansible_os_family == 'Suse' and ansible_version.string is version('2.10', '>=')
|