mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-13 08:05:19 +01:00
Compare commits
6 commits
38634e509d
...
c4ab84a725
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c4ab84a725 | ||
|
|
1b9ae1c77f | ||
|
|
ae95adcfdc | ||
|
|
c654bf0b4c | ||
|
|
04283b5993 | ||
|
|
7ac665a0aa |
5 changed files with 13 additions and 6 deletions
|
|
@ -203,8 +203,10 @@ stages:
|
||||||
targets:
|
targets:
|
||||||
- name: RHEL 9.4
|
- name: RHEL 9.4
|
||||||
test: rhel/9.4
|
test: rhel/9.4
|
||||||
- name: FreeBSD 13.3
|
- name: FreeBSD 14.1
|
||||||
test: freebsd/13.3
|
test: freebsd/14.1
|
||||||
|
- name: FreeBSD 13.4
|
||||||
|
test: freebsd/13.4
|
||||||
- stage: Remote_2_18
|
- stage: Remote_2_18
|
||||||
displayName: Remote devel
|
displayName: Remote devel
|
||||||
dependsOn: []
|
dependsOn: []
|
||||||
|
|
@ -279,7 +281,7 @@ stages:
|
||||||
- Remote_2_18
|
- Remote_2_18
|
||||||
- Docker_2_18
|
- Docker_2_18
|
||||||
- Sanity_devel
|
- Sanity_devel
|
||||||
# - Remote_devel # Wait for test environment release
|
- Remote_devel
|
||||||
# - Docker_devel # Wait for test environment release
|
- Docker_devel
|
||||||
jobs:
|
jobs:
|
||||||
- template: templates/coverage.yml
|
- template: templates/coverage.yml
|
||||||
|
|
|
||||||
|
|
@ -84,8 +84,6 @@ The following ansible-core versions have been tested with this collection:
|
||||||
- ansible-core 2.16 (stable)
|
- ansible-core 2.16 (stable)
|
||||||
- ansible-core 2.15 (stable)
|
- ansible-core 2.15 (stable)
|
||||||
|
|
||||||
*Note: For ansible-core 2.18, CI only covers sanity tests and no integration tests will be run until the test environment is released.*
|
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
We welcome community contributions to this collection. For more details, see [Contributing to Ansible-maintained collections](https://docs.ansible.com/ansible/devel/community/contributing_maintained_collections.html#contributing-maintained-collections) for complete details.
|
We welcome community contributions to this collection. For more details, see [Contributing to Ansible-maintained collections](https://docs.ansible.com/ansible/devel/community/contributing_maintained_collections.html#contributing-maintained-collections) for complete details.
|
||||||
|
|
|
||||||
3
changelogs/fragments/588_ci_enable_devel.yml
Normal file
3
changelogs/fragments/588_ci_enable_devel.yml
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
trivial:
|
||||||
|
- Enabled remote and docker integration tests for devel branch.
|
||||||
3
changelogs/fragments/593_replace_freebsd_version.yml
Normal file
3
changelogs/fragments/593_replace_freebsd_version.yml
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
trivial:
|
||||||
|
- Replaced FreeBSD version 13.3 with 13.4 and 14.1 in CI for devel branch.
|
||||||
|
|
@ -354,6 +354,7 @@ class ActionModule(ActionBase):
|
||||||
user = C.DEFAULT_REMOTE_USER
|
user = C.DEFAULT_REMOTE_USER
|
||||||
else:
|
else:
|
||||||
user = task_vars.get('ansible_user') or self._play_context.remote_user
|
user = task_vars.get('ansible_user') or self._play_context.remote_user
|
||||||
|
user = self._templar.template(user)
|
||||||
|
|
||||||
if self._templar is not None:
|
if self._templar is not None:
|
||||||
user = self._templar.template(user)
|
user = self._templar.template(user)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue