Commit fb8d84e0 by Ben Patterson

Enforce creation of unarchived custom firefox file.

parent 93652b14
......@@ -84,7 +84,13 @@
# platform pull requests to use a custom firefox path to a different
# version
- name: Install custom firefox to jenkins home
get_url: url={{ custom_firefox_url }} dest={{ jenkins_home }}/firefox-{{ custom_firefox_version }}.tar.bz2
get_url:
url: "{{ custom_firefox_url }}"
dest: "{{ jenkins_home }}/firefox-{{ custom_firefox_version }}.tar.bz2"
- name: unpack custom firefox version
unarchive: src={{ jenkins_home }}/firefox-{{ custom_firefox_version }}.tar.bz2 dest={{ jenkins_home }} copy=no
unarchive:
src: "{{ jenkins_home }}/firefox-{{ custom_firefox_version }}.tar.bz2"
dest: "{{ jenkins_home }}"
creates: "{{ jenkins_home }}/firefox"
copy: no
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment