ci: Ansible version must be string, not float [citest_skip]
The ansible version is specified as a YAML floating point number. This causes `2.20` to be converted to `2.2` which breaks platforms that use ansible 2.20. Ensure it and similar version numbers are specified in YAML as strings. Signed-off-by: Rich Megginson <rmeggins@redhat.com>
This commit is contained in:
committed by
Richard Megginson
parent
f913d846bb
commit
7318859c23
@@ -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: aide
|
||||
SR_PYTHON_VERSION: 3.12
|
||||
SR_PYTHON_VERSION: "3.12"
|
||||
SR_ONLY_TESTS: "" # tests_default.yml
|
||||
SR_TEST_LOCAL_CHANGES: true
|
||||
SR_PR_NUM: ""
|
||||
|
||||
Reference in New Issue
Block a user