ci: Update fmf plan to add a separate job to prepare managed nodes #436
Workflow file for this run
This file contains 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
--- | |
# yamllint disable rule:line-length | |
name: Integration tests | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
# run them regularly, to catch changes in operating systems | |
schedule: | |
- cron: 0 4 * * MON | |
jobs: | |
ubuntu: | |
strategy: | |
matrix: | |
release: | |
- ubuntu-20.04 | |
- ubuntu-22.04 | |
runs-on: '${{ matrix.release }}' | |
timeout-minutes: 30 | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Install Ansible | |
run: | | |
sudo apt update | |
sudo apt install -y ansible | |
- name: Install dependencies | |
run: | | |
set -euo pipefail | |
for ff in meta/collection-requirements.yml tests/collection-requirements.yml; do | |
if [ -f "$ff" ]; then | |
sudo ansible-galaxy collection install -vv -r "$ff" | |
fi | |
done | |
- name: Run test playbooks | |
run: | | |
cd tests | |
sudo ansible-playbook -vv --connection=local --inventory localhost, tests_*.yml |