Fix name of the config_src variable in neutron_sriov role #655
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
name: Run Molecule tests | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
paths: | |
- '.github/**' | |
- 'roles/**' | |
- 'plugings/**' | |
- 'molecule-requirements.txt' | |
- 'requirements.yml' | |
jobs: | |
run_molecule: | |
strategy: | |
fail-fast: true | |
matrix: | |
tested_role: | |
- edpm_bootstrap | |
- edpm_ceph_client_files | |
- edpm_container_manage | |
- edpm_container_rm | |
- edpm_container_standalone | |
- edpm_logrotate_crond | |
- edpm_network_config | |
- edpm_neutron_sriov | |
- edpm_nftables | |
- edpm_nodes_validation | |
- edpm_nova_compute | |
- edpm_ovn | |
- edpm_sshd | |
- edpm_ssh_known_hosts | |
- edpm_timezone | |
- edpm_tuned | |
- edpm_telemetry | |
- env_data | |
# Following roles will be included in test matrix only after their | |
# molecule tests deemed functional and stable | |
# - edpm_iscsid | |
# - edpm_ovn_bgp_agent | |
# - edpm_chrony | |
# - edpm_podman | |
# - edpm_nova_libvirt # Will not be tested PR#94 | |
# - edpm_module_load | |
# - edpm_kernel | |
# - edpm_frr | |
# - edpm_growvols | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Install ansible | |
run: pip install ansible | |
- name: Install collections | |
run: ansible-galaxy collection install -r requirements.yml | |
- name: Install molecule deps | |
run: pip install -r molecule-requirements.txt | |
- name: Run molecule test | |
run: ansible-playbook .github/playbooks/molecule-run.yml -vvvv --connection=local -i localhost | |
env: | |
ROLE_NAME: ${{ matrix.tested_role }} |