Skip to content

Commit

Permalink
Revert test
Browse files Browse the repository at this point in the history
  • Loading branch information
steelhead31 committed May 2, 2024
1 parent ec1ebaa commit da8939f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 22 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/build_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,6 @@ jobs:
run: |
sed -i '' 's/keyserver\.ubuntu\.com/185.125.188.27/g' ansible/playbooks/Supporting_Scripts/package_signature_verification.sh
- name: Remove Cmake
run: |
sudo rm -rf /usr/local/bin/cmake
sudo rm -rf /usr/local/doc/cmake
sudo rm -rf /usr/local/man/man1/cmake.1
sudo rm -rf /Applications/CMake.app
- name: Run Ansible Playbook
run: |
echo "localhost ansible_user=runner ansible_connection=local" > ansible/hosts
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,20 +125,20 @@
with_items: "{{ Build_Tool_Packages }}"
tags: build_tools

# # Install CMAKE Where It Doesnt exist
# - name: Check If Cmake Is installed
# stat:
# path: "/opt/homebrew/bin/cmake"
# register: cmake
#
# - name: Install Cmake
# become: yes
# become_user: "{{ ansible_user }}"
# homebrew:
# name: "cmake"
# state: present
# tags: build_tools
# when: not cmake.stat.exists
# Install CMAKE Where It Doesnt exist
- name: Check If Cmake Is installed
stat:
path: "/opt/homebrew/bin/cmake"
register: cmake

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

- name: Install Build Tool Packages NOT macOS 10.12
become: yes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ Build_Tool_Packages:
- autoconf
- automake # for compiling freetype on JDK8u
- coreutils
- cmake
- gnupg
- gnu-sed
- gnu-tar
Expand Down

0 comments on commit da8939f

Please sign in to comment.