mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-18 00:11:26 -07:00
CI: Add macOS 15.3 (#9805)
* Add macOS 15.3. * Install setuptools on macOS 15.
This commit is contained in:
parent
98b328c539
commit
dd4268e0d9
2 changed files with 10 additions and 2 deletions
|
@ -188,8 +188,8 @@ stages:
|
||||||
parameters:
|
parameters:
|
||||||
testFormat: devel/{0}
|
testFormat: devel/{0}
|
||||||
targets:
|
targets:
|
||||||
- name: macOS 14.3
|
- name: macOS 15.3
|
||||||
test: macos/14.3
|
test: macos/15.3
|
||||||
- name: RHEL 9.5
|
- name: RHEL 9.5
|
||||||
test: rhel/9.5
|
test: rhel/9.5
|
||||||
- name: FreeBSD 14.2
|
- name: FreeBSD 14.2
|
||||||
|
@ -208,6 +208,8 @@ stages:
|
||||||
parameters:
|
parameters:
|
||||||
testFormat: 2.18/{0}
|
testFormat: 2.18/{0}
|
||||||
targets:
|
targets:
|
||||||
|
- name: macOS 14.3
|
||||||
|
test: macos/14.3
|
||||||
- name: RHEL 9.4
|
- name: RHEL 9.4
|
||||||
test: rhel/9.4
|
test: rhel/9.4
|
||||||
- name: FreeBSD 14.1
|
- name: FreeBSD 14.1
|
||||||
|
|
|
@ -8,6 +8,12 @@
|
||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# 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
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
- name: Make sure setuptools is installed
|
||||||
|
pip:
|
||||||
|
name: setuptools
|
||||||
|
state: present
|
||||||
|
when: ansible_facts.distribution == 'MacOSX' and ansible_distribution_version is version('15', '>=')
|
||||||
|
|
||||||
- name: run python_requirements_info module
|
- name: run python_requirements_info module
|
||||||
python_requirements_info:
|
python_requirements_info:
|
||||||
register: basic_info
|
register: basic_info
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue