summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJessica Wagantall <jwagantall@linuxfoundation.org>2018-08-30 17:53:11 -0700
committerJessica Wagantall <jwagantall@linuxfoundation.org>2018-09-04 16:54:37 +0000
commitc944ef0bf934a59f653aab3ed7bd43524a69544a (patch)
tree8c2c0e7eb09cb384b89f9a5ad0f17b761489000d
parent610b9986531b0ab4971364e30fe6d72226087ebe (diff)
Install Firefox 55.0.3
CSIT tests fail on the latest version of Firefox. Looks like this is caused due to new dependency libraries. Downgrade to 55.0.3. Change-Id: I52d6b67472131e48ebcae52ab5e7825dad9be991 Issue-ID: CIMAN-33 Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
-rw-r--r--packer/provision/local-docker.yaml16
1 files changed, 15 insertions, 1 deletions
diff --git a/packer/provision/local-docker.yaml b/packer/provision/local-docker.yaml
index 6627d4d11..ecf9e4684 100644
--- a/packer/provision/local-docker.yaml
+++ b/packer/provision/local-docker.yaml
@@ -90,7 +90,6 @@
- name: Install autorelease support packages
apt:
name:
- - firefox
- xmlstarlet
- xvfb
- crudini
@@ -162,3 +161,18 @@
mode: 0755
remote_src: yes
become: true
+
+ - name: Download Firefox version 55.0.3
+ unarchive:
+ src: https://download-installer.cdn.mozilla.net/pub/firefox/releases/55.0.3/linux-x86_64/en-US/firefox-55.0.3.tar.bz2
+ dest: /tmp
+ mode: 0755
+ remote_src: yes
+ become: true
+
+ - name: Create symbolic link to firefox bin
+ file:
+ src: "/usr/bin/firefox-bin/firefox/firefox"
+ dest: "/usr/bin/firefox"
+ state: link
+ become: true