Install Firefox 55.0.3 21/63921/2
authorJessica Wagantall <jwagantall@linuxfoundation.org>
Fri, 31 Aug 2018 00:53:11 +0000 (17:53 -0700)
committerJessica Wagantall <jwagantall@linuxfoundation.org>
Tue, 4 Sep 2018 16:54:37 +0000 (16:54 +0000)
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>
packer/provision/local-docker.yaml

index 6627d4d..ecf9e46 100644 (file)
@@ -90,7 +90,6 @@
     - name: Install autorelease support packages
       apt:
         name:
-          - firefox
           - xmlstarlet
           - xvfb
           - crudini
         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