mirror of https://github.com/ansible/ansible.git
Download files from S3 to improve reliability. (#16891)
Binary module tests now download pre-compiled binaries from S3 instead of downloading go and compiling the modules. Files downloaded form SourceForge are now downloaded from S3.pull/16897/head
parent
123d54e736
commit
6dc148d82c
@ -0,0 +1,10 @@
|
|||||||
|
- hosts: all
|
||||||
|
tasks:
|
||||||
|
- debug: var=ansible_system
|
||||||
|
|
||||||
|
- name: download binary module
|
||||||
|
tags: test_binary_modules
|
||||||
|
get_url:
|
||||||
|
url: "https://ansible-ci-files.s3.amazonaws.com/test/integration/roles/test_binary_modules/helloworld_{{ ansible_system|lower }}"
|
||||||
|
dest: "{{ playbook_dir }}/library/helloworld_{{ ansible_system|lower }}"
|
||||||
|
mode: 0755
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
msi_url: http://downloads.sourceforge.net/project/sevenzip/7-Zip/9.22/7z922-x64.msi
|
msi_url: https://ansible-ci-files.s3.amazonaws.com/test/integration/roles/test_win_msi/7z922-x64.msi
|
||||||
msi_download_path: "C:\\Program Files\\7z922-x64.msi"
|
msi_download_path: "C:\\Program Files\\7z922-x64.msi"
|
||||||
msi_install_path: "C:\\Program Files\\7-Zip"
|
msi_install_path: "C:\\Program Files\\7-Zip"
|
||||||
msi_product_code: "{23170F69-40C1-2702-0922-000001000000}"
|
msi_product_code: "{23170F69-40C1-2702-0922-000001000000}"
|
||||||
|
Loading…
Reference in New Issue