2022-08-05 14:03:38 +02:00
|
|
|
---
|
2020-09-25 08:01:17 +02:00
|
|
|
####################################################################
|
|
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
|
|
####################################################################
|
|
|
|
|
2020-03-27 11:11:27 +01:00
|
|
|
# Test code for the homebrew module.
|
2022-08-05 12:28:29 +02:00
|
|
|
# Copyright (c) 2020, Abhijeet Kasurde <akasurde@redhat.com>
|
|
|
|
# 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
|
2022-08-05 14:03:38 +02:00
|
|
|
|
2024-01-27 10:23:52 +01:00
|
|
|
- when: ansible_distribution in ['MacOSX']
|
2021-10-02 21:18:03 +02:00
|
|
|
block:
|
2024-05-20 09:31:23 +02:00
|
|
|
- include_tasks: 'formulae.yml'
|
2024-01-27 10:23:52 +01:00
|
|
|
- include_tasks: 'casks.yml'
|
2024-05-20 09:31:23 +02:00
|
|
|
- include_tasks: 'docker.yml'
|