Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unixPB: removes become for brew installs in macos - > common task #3757

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -91,17 +91,13 @@
- brew_upgrade

- name: Install brew cu
become: yes
become_user: "{{ ansible_user }}"
homebrew_tap:
name: buo/cask-upgrade
path: "{{ homebrew_path }}"
tags:
- brew_cu

- name: Add AdoptOpenJDK Java Repo
become: yes
become_user: "{{ ansible_user }}"
homebrew_tap:
name: AdoptOpenJDK/openjdk
path: "{{ homebrew_path }}"
Expand All @@ -116,8 +112,6 @@
- skip_ansible_lint

- name: Install Build Tool Packages
become: yes
become_user: "{{ ansible_user }}"
homebrew:
name: "{{ item }}"
state: present
Expand All @@ -137,17 +131,13 @@
register: cmake_local

- name: Install Cmake
become: yes
become_user: "{{ ansible_user }}"
homebrew:
name: "cmake"
state: present
tags: build_tools
when: not (cmake_homebrew.stat.exists or cmake_local.stat.exists)

- name: Install Build Tool Packages NOT macOS 10.12
become: yes
become_user: "{{ ansible_user }}"
homebrew:
name: "{{ item }}"
state: present
Expand All @@ -158,8 +148,6 @@
tags: build_tools

- name: Install Build Tool Casks
become: yes
become_user: "{{ ansible_user }}"
homebrew_cask:
name: "{{ item }}"
state: present
Expand All @@ -168,8 +156,6 @@
tags: build_tools

- name: Install Test Tool Packages
become: yes
become_user: "{{ ansible_user }}"
homebrew:
name: "{{ item }}"
state: present
Expand All @@ -178,8 +164,6 @@
tags: test_tools

- name: Install JCK Tool Casks
become: yes
become_user: "{{ ansible_user }}"
homebrew_cask:
name: "{{ item }}"
state: present
Expand Down
Loading