UnixPB: Add Weston support to RHEL/CentOS 10 #1498
Workflow file for this run
This file contains hidden or 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
| 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Install Python | |
| run: brew install python@3.12 --overwrite | |
| - name: Configure dirmgr | |
| run: | | |
| 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" |