-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move 'docker' homebrew tests into homebrew tests (#8395)
Move 'docker' homebrew tests into homebrew tests.
- Loading branch information
1 parent
704a5ac
commit 9b0c983
Showing
6 changed files
with
39 additions
and
46 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
# 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: MACOS | Find brew binary | ||
command: which brew | ||
register: brew_which | ||
|
||
- name: MACOS | Get owner of brew binary | ||
stat: | ||
path: "{{ brew_which.stdout }}" | ||
register: brew_stat | ||
|
||
- name: MACOS | Install docker without --formula | ||
community.general.homebrew: | ||
name: docker | ||
state: present | ||
become: true | ||
become_user: "{{ brew_stat.stat.pw_name }}" | ||
ignore_errors: true | ||
register: result | ||
|
||
- name: Check that installing docker without --formula raises warning | ||
assert: | ||
that: | ||
- result is failed | ||
|
||
- name: MACOS | Install docker | ||
community.general.homebrew: | ||
name: docker | ||
state: present | ||
force_formula: true | ||
become: true | ||
become_user: "{{ brew_stat.stat.pw_name }}" | ||
notify: | ||
- uninstall docker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters