mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-12 15:45:20 +01:00
Compare commits
4 commits
1d407f5acb
...
4f44565014
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4f44565014 | ||
|
|
c654bf0b4c | ||
|
|
04283b5993 | ||
|
|
c8d3acb75f |
4 changed files with 7 additions and 6 deletions
|
|
@ -279,7 +279,7 @@ stages:
|
|||
- Remote_2_18
|
||||
- Docker_2_18
|
||||
- Sanity_devel
|
||||
# - Remote_devel # Wait for test environment release
|
||||
# - Docker_devel # Wait for test environment release
|
||||
- Remote_devel
|
||||
- Docker_devel
|
||||
jobs:
|
||||
- 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.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
|
||||
|
||||
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.
|
||||
|
|
@ -449,8 +449,8 @@ def main():
|
|||
except ValueError:
|
||||
module.fail_json(msg='Could not determine controller hostname for rsync to send to')
|
||||
else:
|
||||
source = module.params['src']
|
||||
dest = module.params['dest']
|
||||
source = '"' + module.params['src'] + '"'
|
||||
dest = '"' + module.params['dest'] + '"'
|
||||
dest_port = module.params['dest_port']
|
||||
delete = module.params['delete']
|
||||
private_key = module.params['private_key']
|
||||
|
|
|
|||
Loading…
Reference in a new issue