Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions .github/workflows/tft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,21 +98,22 @@ jobs:
fail-fast: false
matrix:
include:
# Ensure ansible version is a string!
- platform: Fedora-42
ansible_version: 2.19
ansible_version: "2.19"
- platform: Fedora-43
ansible_version: 2.20
ansible_version: "2.20"
- platform: CentOS-7-latest
ansible_version: 2.9
ansible_version: "2.9"
- platform: CentOS-Stream-8
ansible_version: 2.9
ansible_version: "2.9"
# On CentOS-Stream-8, latest supported Ansible is 2.16
- platform: CentOS-Stream-8
ansible_version: 2.16
ansible_version: "2.16"
- platform: CentOS-Stream-9
ansible_version: 2.17
ansible_version: "2.17"
- platform: CentOS-Stream-10
ansible_version: 2.17
ansible_version: "2.17"
runs-on: ubuntu-latest
env:
ARTIFACTS_DIR_NAME: "tf_${{ github.event.repository.name }}-${{ github.event.issue.number }}_\
Expand Down
5 changes: 3 additions & 2 deletions plans/test_playbooks_parallel.fmf
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ provision:
- name: managed-node2
role: managed_node
environment:
SR_ANSIBLE_VER: 2.17
# ensure versions are strings!
SR_ANSIBLE_VER: "2.17"
SR_REPO_NAME: kernel_settings
SR_PYTHON_VERSION: 3.12
SR_PYTHON_VERSION: "3.12"
SR_ONLY_TESTS: "" # tests_default.yml
SR_TEST_LOCAL_CHANGES: true
SR_PR_NUM: ""
Expand Down