ci: downstream test asset management

This commit is contained in:
Guido Grazioli 2023-03-17 11:25:40 +01:00
parent 05dccdaf3b
commit ecb6cbb9bf
No known key found for this signature in database
GPG key ID: 22C8C31EF2BC093B

View file

@ -14,7 +14,14 @@
ansible.builtin.set_fact:
assets_server: "{{ lookup('env','MIDDLEWARE_DOWNLOAD_RELEASE_SERVER_URL') }}"
- name: "Download and deploy jws zips from {{ assets_server }}"
- name: "Set offline when assets server from env is defined"
ansible.builtin.set_fact:
sso_offline_install: True
when:
- assets_server is defined
- assets_server | length > 0
- name: "Download and deploy zips from {{ assets_server }}"
ansible.builtin.get_url:
url: "{{ asset }}"
dest: "{{ lookup('env', 'PWD') }}"