mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Get packages for dnf and yum tests from S3.
This commit is contained in:
parent
c0aaf0fff7
commit
22d5f5d97f
2 changed files with 5 additions and 5 deletions
|
@ -411,7 +411,7 @@
|
||||||
|
|
||||||
- name: try to install from non existing url
|
- name: try to install from non existing url
|
||||||
dnf:
|
dnf:
|
||||||
name: http://non-existing.com/non-existing-1.0.0.fc26.noarch.rpm
|
name: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/dnf/non-existing-1.0.0.fc26.noarch.rpm
|
||||||
state: present
|
state: present
|
||||||
register: dnf_result
|
register: dnf_result
|
||||||
ignore_errors: yes
|
ignore_errors: yes
|
||||||
|
@ -494,7 +494,7 @@
|
||||||
|
|
||||||
- name: try to install not compatible arch rpm, should fail
|
- name: try to install not compatible arch rpm, should fail
|
||||||
dnf:
|
dnf:
|
||||||
name: http://download.fedoraproject.org/pub/epel/7/ppc64le/Packages/b/banner-1.3.4-3.el7.ppc64le.rpm
|
name: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/dnf/banner-1.3.4-3.el7.ppc64le.rpm
|
||||||
state: present
|
state: present
|
||||||
register: dnf_result
|
register: dnf_result
|
||||||
ignore_errors: True
|
ignore_errors: True
|
||||||
|
@ -516,7 +516,7 @@
|
||||||
state: absent
|
state: absent
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
pkg_url: https://download.fedoraproject.org/pub/fedora/linux/releases/27/Everything/x86_64/os/Packages/f/fpaste-0.3.9.1-1.fc27.noarch.rpm
|
pkg_url: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/dnf/fpaste-0.3.9.1-1.fc27.noarch.rpm
|
||||||
# setup end
|
# setup end
|
||||||
|
|
||||||
- name: download an rpm
|
- name: download an rpm
|
||||||
|
|
|
@ -406,7 +406,7 @@
|
||||||
|
|
||||||
- name: try to install from non existing url
|
- name: try to install from non existing url
|
||||||
yum:
|
yum:
|
||||||
name: http://non-existing.com/non-existing-1.0.0.fc26.noarch.rpm
|
name: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/yum/non-existing-1.0.0.fc26.noarch.rpm
|
||||||
state: present
|
state: present
|
||||||
register: yum_result
|
register: yum_result
|
||||||
ignore_errors: yes
|
ignore_errors: yes
|
||||||
|
@ -454,7 +454,7 @@
|
||||||
|
|
||||||
- name: try to install not compatible arch rpm, should fail
|
- name: try to install not compatible arch rpm, should fail
|
||||||
yum:
|
yum:
|
||||||
name: http://download.fedoraproject.org/pub/epel/7/ppc64le/Packages/b/banner-1.3.4-3.el7.ppc64le.rpm
|
name: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/yum/banner-1.3.4-3.el7.ppc64le.rpm
|
||||||
state: present
|
state: present
|
||||||
register: yum_result
|
register: yum_result
|
||||||
ignore_errors: True
|
ignore_errors: True
|
||||||
|
|
Loading…
Reference in a new issue