Fix old_style_cache_plugins test failure using latest redis (#85092)

Pin last working version instead
pull/85138/head
Sloane Hertel 7 months ago committed by GitHub
parent 80156dc807
commit 24b2747b8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -20,22 +20,22 @@
- name: get the latest stable redis server release
get_url:
url: https://download.redis.io/redis-stable.tar.gz
url: https://download.redis.io/releases/redis-7.4.3.tar.gz
dest: ./
timeout: 60
- name: unzip download
unarchive:
src: redis-stable.tar.gz
src: redis-7.4.3.tar.gz
dest: ./
- command: "{{ make }}"
args:
chdir: redis-stable
chdir: redis-7.4.3
- name: copy the executable into the path
copy:
src: "redis-stable/src/{{ item }}"
src: "redis-7.4.3/src/{{ item }}"
dest: /usr/local/bin/
mode: 755
become: yes

Loading…
Cancel
Save