Skip to content

Update build_mac.yml #2

Update build_mac.yml

Update build_mac.yml #2

Workflow file for this run

name: Ansible Playbook
on:
pull_request:
paths:
- .github/workflows/build_mac.yml
- ansible/playbooks/AdoptOpenJDK_Unix_Playbook/**
branches:
- master
permissions:
contents: read
jobs:
build-macos:
name: macOS
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: [macos-13]
- os: [macos-14]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Install Python
run: brew install [email protected] --overwrite
-name: Configure dirmgr
run: |

Check failure on line 31 in .github/workflows/build_mac.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build_mac.yml

Invalid workflow file

You have an error in your yaml syntax on line 31
mkdir -p ~/.gnupg/
touch ~/.gnupg/dirmngr.conf
echo "standard-resolver" > ~/.gnupg/dirmngr.conf
- name: Install Ansible
run: brew install ansible
- name: Run Ansible Playbook
run: |
echo "localhost ansible_user=runner ansible_connection=local" > ansible/hosts
set -eux
cd ansible
sudo ansible-playbook -i hosts playbooks/AdoptOpenJDK_Unix_Playbook/main.yml --skip-tags="hosts_file,hostname,brew_upgrade,brew_cu,kernel_tuning,adoptopenjdk,jenkins,nagios,superuser,swap_file,crontab"