mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-03 15:04:02 -07:00
Remove blanket skips for Python 3 in CI (#10043)
* Remove blanket skips for Python 3 in CI.
* Try to fix hg tests.
* Disable hg tests.
* Drop restriction of supervisor to <4.0.0.
This was introduced in https://github.com/ansible/ansible/pull/54935.
* Make tests work with supervisorctl 4.0.0.
According to https://supervisord.org/changes.html#id12,
"supervisorctl will now set its exit code to a non-zero value when an error condition occurs."
I'm not sure why a stopped service in 'status' constitutes an error condition,
but whatever 🤷...
* Use correct Python executable.
* Skip RHEL/macOS; diff on config write.
* Skip CentOS 7 and OpenSuSE on ansible-core 2.16.
(cherry picked from commit 2a5abab738
)
Co-authored-by: Felix Fontein <felix@fontein.de>
65 lines
2.2 KiB
YAML
65 lines
2.2 KiB
YAML
---
|
|
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
- name: restore the updated python
|
|
command: mv "{{ which_python.stdout }}.updated" "{{ which_python.stdout }}"
|
|
|
|
- name: restore the updated pip
|
|
command: mv "{{ which_pip.stdout }}.updated" "{{ which_pip.stdout }}"
|
|
|
|
- name: restore the mercurial python interpreter symlink (if needed)
|
|
lineinfile:
|
|
path: "{{ which_hg.stdout }}"
|
|
regexp: "^#!.*$"
|
|
line: "#!{{ stat_hg_interpreter.stat.path }}"
|
|
when: stat_hg_interpreter.stat.islnk
|
|
|
|
- name: uninstall packages which were not originally installed (apk)
|
|
package:
|
|
name: mercurial
|
|
state: absent
|
|
when: ansible_facts.pkg_mgr in ['apk', 'community.general.apk']
|
|
|
|
# using the apt module prevents autoremove from working, so call apt-get via shell instead
|
|
- name: uninstall packages which were not originally installed (apt)
|
|
shell: apt-get -y remove mercurial && apt-get -y autoremove
|
|
when: ansible_facts.pkg_mgr == 'apt'
|
|
|
|
- name: uninstall packages which were not originally installed (dnf)
|
|
dnf:
|
|
name: mercurial
|
|
state: absent
|
|
autoremove: true
|
|
when: ansible_facts.pkg_mgr == 'dnf'
|
|
|
|
# the yum module does not have an autoremove parameter
|
|
- name: uninstall packages which were not originally installed (yum)
|
|
shell: yum -y autoremove mercurial
|
|
when: ansible_facts.pkg_mgr == 'yum'
|
|
|
|
- name: uninstall packages which were not originally installed (pacman)
|
|
package:
|
|
name: mercurial
|
|
state: absent
|
|
when: ansible_facts.pkg_mgr in ['pacman', 'community.general.pacman']
|
|
|
|
- name: uninstall packages which were not originally installed (pkgng)
|
|
package:
|
|
name: mercurial
|
|
state: absent
|
|
autoremove: true
|
|
when: ansible_facts.pkg_mgr in ['pkgng', 'community.general.pkgng']
|
|
|
|
- name: uninstall packages which were not originally installed (zypper)
|
|
package:
|
|
name: mercurial
|
|
state: absent
|
|
when: ansible_facts.pkg_mgr in ['zypper', 'community.general.zypper']
|
|
|
|
- name: restore the default python
|
|
raw: mv "{{ which_python.stdout }}.default" "{{ which_python.stdout }}"
|
|
|
|
- name: restore the default pip
|
|
raw: mv "{{ which_pip.stdout }}.default" "{{ which_pip.stdout }}"
|