tools: Add Ubuntu 2404 ppc64le and s390x aqa test images #4196
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: Linter | |
| on: | |
| pull_request: | |
| paths: | |
| - ansible/** | |
| - .ansible-lint | |
| branches: | |
| - master | |
| push: | |
| paths: | |
| - ansible/** | |
| branches: | |
| - master | |
| permissions: | |
| contents: read | |
| jobs: | |
| yamllint: | |
| permissions: | |
| contents: read # for actions/checkout to fetch code | |
| pull-requests: write # for karancode/yamllint-github-action to post comments on PRs | |
| name: Yamllint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: 'Yamllint' | |
| uses: karancode/yamllint-github-action@4052d365f09b8d34eb552c363d1141fd60e2aeb2 # v3.0.0 | |
| with: | |
| yamllint_comment: true | |
| env: | |
| GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| ansible_lint: | |
| name: Ansible Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Set up Python 3.x | |
| uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0 | |
| with: | |
| python-version: '3.13' # Pin To 3.13 until ansible 2.20 is supported | |
| - name: Install dependencies | |
| run: pip install ansible ansible-lint | |
| - name: ansible_lint | |
| run: | | |
| # Ansible code static analysis | |
| ansible-lint | |
| cd ansible | |
| # Check that the inventory is valid | |
| ansible-inventory --host build-marist-rhel79-s390x-1 | |
| # Check Playbook syntax. | |
| ansible-playbook playbooks/AdoptOpenJDK_Unix_Playbook/main.yml --syntax-check | |
| ansible-playbook playbooks/AdoptOpenJDK_Unix_Playbook/trss.yml --syntax-check | |
| ansible-playbook playbooks/AdoptOpenJDK_AIX_Playbook/main.yml --syntax-check | |
| ansible-playbook playbooks/AdoptOpenJDK_Windows_Playbook/main.yml --syntax-check | |
| ansible-playbook playbooks/AdoptOpenJDK_Unix_Playbook/ubuntu-jckservices.yml --syntax-check | |
| ansible-playbook playbooks/vagrant.yml --syntax-check | |
| ansible-playbook playbooks/ubuntu-jck.yml --syntax-check |