Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ci/playbooks/content_provider/pre.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
ansible.builtin.include_role:
name: prepare-workspace

- name: Pin OpenSSL for job TLS downloads
ansible.builtin.include_tasks: ../tasks/pin_openssl.yml

- name: Install ansible-core
become: true
ansible.builtin.package:
Expand Down
3 changes: 3 additions & 0 deletions ci/playbooks/e2e-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
ansible.builtin.include_role:
name: prepare-workspace

- name: Pin OpenSSL for job TLS downloads
ansible.builtin.include_tasks: tasks/pin_openssl.yml

- name: Create zuul-output directory
ansible.builtin.file:
path: "{{ ansible_user_dir }}/zuul-output/logs"
Expand Down
3 changes: 3 additions & 0 deletions ci/playbooks/pod-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
- name: Run light checks in pod
hosts: all
tasks:
- name: Pin OpenSSL for job TLS downloads
ansible.builtin.include_tasks: tasks/pin_openssl.yml

- name: Install packages
become: true
ansible.builtin.package:
Expand Down
3 changes: 3 additions & 0 deletions ci/playbooks/pre-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
ansible.builtin.include_role:
name: prepare-workspace

- name: Pin OpenSSL for job TLS downloads
ansible.builtin.include_tasks: tasks/pin_openssl.yml

- name: Output pip related things
ansible.builtin.command:
cmd: pip --version
Expand Down
15 changes: 15 additions & 0 deletions ci/playbooks/tasks/pin_openssl.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
- name: Pin OpenSSL to 3.5.5
become: true
register: _cifmw_pin_openssl
changed_when: >-
_cifmw_pin_openssl.rc == 0 and
"Nothing to do." not in (_cifmw_pin_openssl.stdout | default(""))
failed_when: false
ansible.builtin.command:
argv:
- dnf
- downgrade
- --allowerasing
- -y
- openssl-3.5.5
- openssl-libs-3.5.5
Loading